如何在不使用mvc 4中的模型的情况下进行客户端验证

时间:2012-09-07 11:54:05

标签: javascript jquery ajax

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

2 个答案:

答案 0 :(得分:2)

您需要指定验证属性(如果您希望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或其他客户端插件自行处理所有验证。

答案 1 :(得分:1)

使用jQuery验证属性装饰表单元素(通常由MVC在读取模型的DataAnnotations时自动完成)。

从文档中,您可以通过以下方式进行简单的文本框验证:

<input id="cname" name="name" size="25" class="required" minlength="2" />

然后,

$(document).ready(function(){ $("#commentForm").validate(); });

请参阅jQuery validation documentation了解更多