0

我正在编写一个自定义助手来处理嵌套导航菜单。我在将一组数组(或字典)传递给函数时遇到了一些麻烦。

下面是对 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)

我的功能运行良好,直到字典项目。我能够生成单级菜单,但试图让它与嵌套菜单一起使用。

非常感谢任何帮助和课程!

谢谢,

研发

4

3 回答 3

1

你能做这样的事情吗:

public static MvcHtmlString ActionMenuItem(
    this HtmlHelper htmlHelper,
    String linkText,
    String actionName,
    String controllerName,
    String iconType = null,
    string classCustom = null,
    params KeyValuePair<string, string>[] subMenus)
{ ... }

var dict = new Dictionary<string, string>()
{
    { "a", "b" },
    { "c", "d" },
};

*.ActionMenuItem(*, *, *, *, *, dict.ToArray());
于 2013-10-13T03:39:33.233 回答
0

您不能使用关键字声明Dictionary<TKey, TValue>为参数数组。params

根据 c# 规范:

使用修饰符声明的params参数是参数数组。如果形参列表包含参数数组,则它必须是列表中的最后一个参数,并且必须是一维数组类型

Dictionary不是一维数组

您可以创建一个具有两个属性的类:Title并且Action将参数类型更改为MyClass[]而不是字典。

于 2013-10-13T00:20:50.147 回答
0

尝试这样的事情:

    @Html.ActionMenuItem(
        "All Reports", 
        "index", 
        "report", 
        "icon-bar-chart", 
        "last", 
        new Dictionary<string, string>[]
        {
            new Dictionary<string, string>()
            {
                { "title", "Report 1" }, 
                { "action", "report1" }
            }, 
            new Dictionary<string, string>()
            {
                { "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)
于 2013-10-13T01:13:11.387 回答