在 HttpPost 上使用 MVC3 绑定嵌套模型
我是 MVC3 的新手。
我在表单上有一个提交按钮,我想绑定一个模型,该模型有 2-3 个嵌套对象模型,内部有许多属性。
有没有办法在不使用EditorFor的情况下绑定这些嵌套对象;这样,当我提交表单时,我将在返回的模型上采用 ActionResult(对象模型),嵌套对象模型及其值,而不必在 html 后面实现隐藏值或表单?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 setViewData.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.
基本上你需要足够的值来再次识别你的模型。因此,您可以在隐藏字段中使用 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.