mvcsitemap を使用して、開発中の Web アプリケーションのメニュー、サブメニュー、ブレッドクラムを作成しています。リンクをレンダリングするときに(多くの)パラメーターを移動するために、xml構成でpreserveroutevaluesを使用しています。ユーザーがクエリ パラメータをいじり始めると、一部のページが読み込まれた後にメニュー/サブメニュー/ブレッドクラムが表示されなくなります。これは一貫性がなく、常に再現することはできませんが、あまりにも頻繁に発生します。
私のルート
routes.MapRoute(
name: "ForwardCurveDefault",
url: "forward-curve/{commoditycode}/{selectedyear}-{selectedmonth}-{selectedday}",
defaults: new {
controller = "ForwardCurve", action = "index",
selectedyear = default(DateTime).Year,
selectedmonth = default(DateTime).Month,
selectedday = default(DateTime).Day,
commoditycode = "none"
}
);
routes.MapRoute(
name: "Consumption",
url: "consumption/{commoditycode}/{managedcompanyid}/{entityid}/{startyear}-{startmonth}-{startday}/{endyear}-{endmonth}-{endday}",
defaults: new {
controller = "Consumption", action = "Index",
// begining of current month.
startyear = default(DateTime).Year,
startmonth = default(DateTime).Month,
startday = default(DateTime).Day,
// end of current month.
endyear = default(DateTime).Year,
endmonth = default(DateTime).Month,
endday = default(DateTime).Day,
commoditycode = "none",
managedcompanyid = 0,
entityid = 0,
}
);
routes.MapRoute(
name: "Budget",
url: "budget/{commoditycode}/{managedcompanyid}/{entityid}/{startyear}-{startmonth}-{startday}/{endyear}-{endmonth}-{endday}",
defaults: new {
controller = "Budget", action = "Index",
// begining of current month.
startyear = default(DateTime).Year,
startmonth = default(DateTime).Month,
startday = default(DateTime).Day,
// end of current month.
endyear = default(DateTime).Year,
endmonth = default(DateTime).Month,
endday = default(DateTime).Day,
commoditycode = "none",
managedcompanyid = 0,
entityid = 0,
}
);
私のサイトマップ
<mvcSiteMapNode title="Data Management" controller="ForwardCurve" action="Index" key="DataManagement" preservedRouteParameters="commoditycode,selectedyear,selectedmonth,selectedday">
<mvcSiteMapNode title="Forward curves" controller="ForwardCurve" action="Index" key="forwardcurve" preservedRouteParameters="commoditycode,selectedyear,selectedmonth,selectedday"/>
<mvcSiteMapNode title="Consumption" controller="Consumption" action="Index" key="consumption" preservedRouteParameters="commoditycode,managedcompanyid,entityid,startyear,startmonth,startday,endyear,endmonth,endday"/>
<mvcSiteMapNode title="Budget" controller="Budget" action="Index" key="budget" preservedRouteParameters="commoditycode,managedcompanyid,entityid,startyear,startmonth,startday,endyear,endmonth,endday"/>
</mvcSiteMapNode>
素敵なメニューを頂きました。さまざまなクエリ値を行ったり来たりした後、有効な URL とメニューのないページに行き着きます。currentNode が null であることがわかります。