0
我在控制器的動作:如何將參數添加到mvcSiteMapNode?
public ActionResult Close(DocType docType)
{
return View();
}
其中的DocType是一個簡單的枚舉。 我想有2個不同的鏈接到相同的動作,但具有不同的參數。我曾經嘗試這樣做:
<mvcSiteMapNode title="Accounting" clickable="false" imageUrl="~/Content/Images/Buttons/MenuButtons/billing.png" visibility="path">
<mvcSiteMapNode title="Payments" controller="Payment" action="Index"></mvcSiteMapNode>
<mvcSiteMapNode title="Closing WO" controller="Payment" action="Close" docType="2"></mvcSiteMapNode>
<mvcSiteMapNode title="Closing WS" controller="Payment" action="Close" docType="4"></mvcSiteMapNode>
</mvcSiteMapNode>
但在菜單我有2個鏈接不帶任何參數:「/支付/關閉」
有什麼不對? 如何將參數添加到mvcSiteMapNode中?
這裏是我的RouteConfig:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
這聽起來像一個路由問題。請顯示您的路由配置。你是否有一個帶有{docType}參數的路由? – NightOwl888
不,我沒有這樣的路線。我想只使用帶可選id參數的默認路由 –