如何将字典项传递给 C# 中的函数
本文关键字:函数 字典 | 更新日期: 2023-09-27 18:35:17
我正在编写一个自定义助手来处理嵌套导航菜单。我在将一组数组(或字典)传递给函数时遇到了一些麻烦。
下面是对 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)
我的函数运行良好,直到字典项目。我能够生成一个单级菜单,但试图让它与嵌套菜单一起使用。
任何帮助和课程非常感谢!
谢谢
研发
你能
做这样的事情吗:
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());
不能
使用关键字将Dictionary<TKey, TValue>
声明为参数数组params
。
根据 c# 规范:
使用
params
修饰符声明的参数是参数数组。如果 正式参数列表包括一个参数数组,它必须是最后一个 参数,并且它必须是一维数组 类型。
Dictionary
不是一维数组。
您可以创建一个具有两个属性的类:Title
和 Action
,并将参数类型更改为 MyClass[]
而不是字典。
尝试这样的事情:
@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)