MVC 3 ModelState.IsValid 与多个 ViewModel
假设我有一个由 3 个其他 ViewModel 组成的 ViewModel。一个包含项目列表,另一个包含具有 [Required] 属性的类的实例,然后是另一个其他项目的列表。
如果用户从两个列表中的任何一个中选择一个项目,我不希望第二个对象上的 [Required] 属性导致 ModelState 无效,因为如果用户选择这些项目之一,他们将不会需要使用具有[必填]属性的项目填写表单。
我该如何解决这个问题?
Let's just say I have A ViewModel that is made up of 3 other ViewModels. One contains a list of items, the other contains an instance of a class with a [Required] attribute and then another list of other items.
If the user selects from one of the items in either of the two lists, I do not want the [Required] attribute on the 2nd object to cause the ModelState to be invalid, because if the user selects one of those items they won't need to fill out the form with the item with the [Required] attribute.
How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是使用 ModelState.Remove("KeyName") 删除“有问题的”验证。我有完全相同的场景,并实现了以下内容:
但重要的是,您要确保这不会对代码的其他区域产生连锁反应。
One option is for you to remove the "offending" validation by using ModelState.Remove("KeyName"). I have exactly the same scenario and have implemented the following:
It is important though that you make sure this will not have a knock-on effect in other areas of your code.