在ASP.NET MVC中,如何在action中接收参数字典?
我的控制器中的大多数操作都有静态定义的参数列表,因此它们与标准教程示例很好地对应:
public ActionResult SomeAction(string id, string arg1, string arg2)
{
// use arg1, arg2...
}
但我有一个麻烦的情况,视图动态地组合表单,因此参数集是完全动态的。 我对字符串名称到字符串值的映射感到满意。
我已经尝试过:
public ActionResult TroublesomeAction(string id, IDictionary<string, string> args)
{
// loop through args...
}
但是 args
传递了一个 null
。 在操作中获取我们现在在错误消息中经常听到的著名“参数字典”的最简单方法是什么?
如果没有简单的方法,我该如何采取困难的方法呢?
Most of the actions in my controller have statically-defined parameter lists and so they correspond nicely with the standard tutorial examples:
public ActionResult SomeAction(string id, string arg1, string arg2)
{
// use arg1, arg2...
}
But I have one troublesome case where the view puts together a form dynamically, so the set of parameters is completely dynamic. I'd be happy with a mapping of string names to string values.
I've tried this:
public ActionResult TroublesomeAction(string id, IDictionary<string, string> args)
{
// loop through args...
}
But args
is passed a null
. What's the easiest way in an action to get hold of the famous "parameter dictionary" that we hear so much about in error messages these days?
And if there isn't an easy way, how would I do it the hard way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从控制器中,我们可以访问以下内容:
其中包含我所需要的内容,因此无需映射到操作上的参数。
From a controller, we have access to this:
Which contains exactly what I need, so no need to map to an argument on the action.