在 HttpPost 上使用 MVC3 绑定嵌套模型

发布于 2024-12-06 12:33:44 字数 188 浏览 2 评论 0 原文

我是 MVC3 的新手。

我在表单上有一个提交按钮,我想绑定一个模型,该模型有 2-3 个嵌套对象模型,内部有许多属性。

有没有办法在不使用EditorFor的情况下绑定这些嵌套对象;这样,当我提交表单时,我将在返回的模型上采用 ActionResult(对象模型),嵌套对象模型及其值,而不必在 html 后面实现隐藏值或表单?

I am new to MVC3.

I have a submit button on a form and I want to bind a model which has 2-3 nested object models with many properties inside.

Is there a way to bind these nested objects without using EditorFor; so that when I submit the form I will take on ActionResult(Object model) on model that is being returned, the nested object models with their values without having to implement hidden values or forms behind on html?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

久而酒知 2024-12-13 12:33:44

DefaultModelBinder 按约定工作,因此要使其工作,表单字段必须遵守 MVC 命名约定。

如果您不想使用EditorForModel来创建表单,那么您必须为每个字段实现您自己的命名约定,并为每个字段设置ViewData.TemplateInfo.HtmlFieldPrefix元素。然后,您必须创建一个自定义 ModelBinder 来获取返回的表单,并根据您的命名约定绑定到您的模型。

请注意,这会在 MVC3 中产生一些其他问题,其中最重要的是 DropDownList 和其他一些项目的不显眼验证的呈现可能会失败。

对于一般情况,最好在您的视图中使用 EditorForModel,并使用 MVC 的现有约定进行工作。您可以创建特定于每个嵌套模型的视图。 Brad Wilson 在 这篇文章

The DefaultModelBinder works by convention, so for it to work, the form fields must adhere to the MVC naming convention.

If you do not want to use EditorForModel to create your form, then you will have to implement your own naming convention for every field, and set ViewData.TemplateInfo.HtmlFieldPrefix for each element. Then, you will have to create a custom ModelBinder to take the form returned, and bind to your models based on your naming convention.

Be aware that this creates some other issues in MVC3, most important of which is that the rendering of unobtrusive validation for DropDownLists and some other items may fail.

For the general case, it is best to use EditorForModel in your view, and to work using MVC's existing conventions. You can create a view which is specific for each nested model. Brad Wilson gives a good overview of the process in this article.

疏忽 2024-12-13 12:33:44

基本上你需要足够的值来再次识别你的模型。因此,您可以在隐藏字段中使用 Id 以及要更改的所有属性。
要重新创建模型,只需通过基本参数将 Id 和更改后的值传递给控制器​​操作,或者编写 model-binder - 恕我直言,这是处理这些情况的最佳方法。

basically you need enough values to identify your model again. So you can go with a Id in a hidden field and all the properties you want to change.
To recreate your model either just pass the Id and changed values via basic parameters to your controller-action or write a model-binder - IMHO thats the best way to deal with those situations.

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