ネストされたナビゲーション メニューを処理するカスタム ヘルパーを作成しています。関数に一連の配列 (または辞書) を渡す際に問題が発生しています。
以下は、ActionMenuItem への Razor 呼び出しです。
@Html.ActionMenuItem("All Reports", "index", "report", "icon-bar-chart", "last", new {"title" = "Report 1", "action" = "report1"}, new {"title" = "Report 2", "action" = "report2"})
public static MvcHtmlString ActionMenuItem(this HtmlHelper htmlHelper, String linkText, String actionName, String controllerName, String iconType = null, string classCustom = null, params Dictionary<string, string> subMenu)
私の機能は、辞書項目までうまく機能します。単一レベルのメニューを生成できますが、ネストされたメニューで動作させようとしています。
どんな助け、そしてレッスンも大歓迎です!
ありがとうございました、
RD