gpt4 book ai didi

jquery - 在 ASP MVC3 中使用 [RequiredIf] 和 ViewModel

转载 作者:行者123 更新时间:2023-12-01 02:22:25 25 4
gpt4 key购买 nike

我正在使用custom RequiredIf attribute created by Simon Ince在我的 MVC 应用程序中。

我有一个 View 模型,它像这样传递给 View :

public class HistoryViewModel
{
public Contact ContactModel { get; set; }
public Account AccountModel { get; set; }
public Person PersonModel { get; set; }
}

我有一堆模型,其中包含所有 Prop (即 contact.cs、account.cs、person.cs)

public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public bool IsAdult { get; set; }
[RequiredIf("IsAdult", "Yes", Errormessage="Please leave a comment")]
public string Comments { get; set; }
}

RequiredIf通过 View 模型时,验证似乎不起作用。如果我直接将属性移到 View 模型中,效果很好 . All other [必需]` 属性通过 View 模型在模型中工作。

那么我是否需要将所有需要RequiredIf 的属性移至 View 模型中?或者还有其他方法可以解决这个问题吗?

最佳答案

你试过吗MVC FoolProof validation ?它支持RequiredIf(以及其他一些)以及客户端支持。有时可能会有点问题,但最新版本还不错。

与上面的工作方式相同(我在切换到 FoolProof 之前尝试过)

   public bool Married { get; set; }

[RequiredIfTrue("Married")]
public string MaidenName { get; set; }

关于jquery - 在 ASP MVC3 中使用 [RequiredIf] 和 ViewModel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12610424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com