我正在开发一个ASP.NET MVC 4应用程序,其中我没有使用View Models而不想使用它们。对于模型,我使用从实体生成的类。请告诉我有什么方法可以做到这一点。
答案 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();
});