在ASP.NET MVC中,如何在action中接收参数字典?

发布于 2024-07-19 06:12:11 字数 531 浏览 10 评论 0原文

我的控制器中的大多数操作都有静态定义的参数列表,因此它们与标准教程示例很好地对应:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃素的狼 2024-07-26 06:12:11

从控制器中,我们可以访问以下内容:

Request.Form

其中包含我所需要的内容,因此无需映射到操作上的参数。

From a controller, we have access to this:

Request.Form

Which contains exactly what I need, so no need to map to an argument on the action.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文