本節我們就學習如何使用 System.ComponentModel.DataAnnotations 命名空間中的特性指定對數據模型中的各個字段的驗證。
這些特性用於定義常見的驗證模式,例如範圍檢查和必填字段。而 DataAnnotations 特性使 MVC 能夠提供客戶端和服務器驗證檢查,使妳無需進行額外的編碼來控制數據的有效。
System.ComponentModel.DataAnnotations 特性可用於實體數據模型 (EDM)、LINQ to SQL 和其他數據模型。 還可以創建自定義驗證特性。
關於DataAnnotations請看System.ComponentModel.DataAnnotations概述
數據級別的驗證
創建項目新建名為User的Model類
publicclass User { publicint ID { get; set; } }
以Create驗證為例來學習DataAnnotations 驗證。
新建Create方法
//新建 // GET: /User/Create public ActionResult Create() { return View(); }
添加視圖
註意:在添加視圖的時候,如果強類型視圖找不到Model,建議在重新生成解決方案。
非空驗證
publicclass User { publicint ID { get; set; } [DisplayName("姓名")] [Required(ErrorMessage = "姓名不能為空")] publicstring Name { get; set; } }
添加視圖直接運行
字符長度驗證
publicclass User { publicint ID { get; set; } [DisplayName("姓名")] [Required(ErrorMessage = "姓名不能為空")] publicstring Name { get; set; } [DisplayName("密碼")] [StringLength(6, ErrorMessage = "密碼不能超過6個字符")] publicstring Password { get; set; } }
添加視圖後直接運行
數字驗證
[DisplayName("年齡")] [Range(1, int.MaxValue, ErrorMessage = "請輸入大於等於1的數")] publicint Age { get; set; }
添加視圖直接運行
正則表達式驗證
[DisplayName("電子郵件")] [RegularExpression(@"^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$",
ErrorMessage = "請輸入正確的Email格式\n示例:abc@123.com")] publicstring Email { get; set; }
添加視圖後運行效果
業務邏輯驗證
遠程服務端驗證
Remote異步請求驗證,在[HttpGet]時獲取指定Controller裏面的指定方法驗證,此方法必須是[HttpGet]標記的,返回類型為Json類型的JavaScript對象。
Model代碼
[DisplayName("姓名")] [Required(ErrorMessage = "姓名不能為空")] [Remote("GetUser", "User", ErrorMessage = "該姓名已存在")] publicstring Name { get; set; }
Controller代碼
//HttpGet是必須加的 [HttpGet] public ActionResult GetUser(string name) { return Json(name != "aa", JsonRequestBehavior.AllowGet); }
直接添加視圖運行
自定義Attbitue驗證
Model代碼
[Required] [StringLength(15)] [LoginUnique] publicstring Login { get; set; }
Attribute代碼
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = true)] publicsealedclass LoginUniqueAttribute : ValidationAttribute { privatestaticreadonlystring DefaultErrorMessage = "login unique";//MUI.login_unique;public LoginUniqueAttribute() : base(DefaultErrorMessage) { } publicoverridestring FormatErrorMessage(string name) { return DefaultErrorMessage; } publicoverridebool IsValid(objectvalue) { return UserService.Check(p=>p.Name==value.ToString()); } }
直接添加視圖運行
總結
其實微軟DataAnnotations驗證壹直是在VS平臺上面充分運用的,不管是Web程序還是WForm程序甚至是Silverlight程序,都可以使用微軟提高的DataAnnotations驗證,可以說是無孔不入啊。不過就這三種程序而言,MVC的驗證相對來說還是比較完善的,簡單適用。