gpt4 book ai didi

javascript - 如何在 mvc 4 中不使用模型进行客户端验证

转载 作者:行者123 更新时间:2023-11-28 20:51:44 24 4
gpt4 key购买 nike

我正在开发一个 ASP.NET MVC 4 应用程序,其中我没有使用 View 模型,也不想使用它们。对于模型,我使用从实体生成的类。请告诉我有什么办法可以做到这一点。

最佳答案

您将需要指定验证属性(如果您希望 ASP 为您处理验证)。您可以使用分部类来扩展您的模型,然后添加如下属性:

//this is the model (generated from the entities)  
[MetadataType(typeof(User_Validation))]

public partial class User
{

}

然后指定验证属性。

    public class User_Validation
{
[Required(ErrorMessage="The Full Name is required")]
public string FullName{ get; set; }

[Required(ErrorMessage="The Cellphone Number is required")]
public string CellNumber { get; set; }

}

或者,您可以使用 jQuery 或您选择的其他客户端插件自行处理所有验证。

关于javascript - 如何在 mvc 4 中不使用模型进行客户端验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12317601/

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