MVC 3 ModelState.IsValid 与多个 ViewModel

发布于 2024-10-30 19:12:34 字数 229 浏览 1 评论 0原文

假设我有一个由 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 技术交流群。

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

发布评论

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

评论(1

未央 2024-11-06 19:12:39

一种选择是使用 ModelState.Remove("KeyName") 删除“有问题的”验证。我有完全相同的场景,并实现了以下内容:

var MyModel = _someService.GetModelById(id);
TryUpdateModel(MyModel);
ModelState.Remove("MyModel.OffendingField");
if (ModelState.IsValid)
{
    ...
}

但重要的是,您要确保这不会对代码的其他区域产生连锁反应。

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:

var MyModel = _someService.GetModelById(id);
TryUpdateModel(MyModel);
ModelState.Remove("MyModel.OffendingField");
if (ModelState.IsValid)
{
    ...
}

It is important though that you make sure this will not have a knock-on effect in other areas of your code.

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