Asp.Net MVC 使用 DataAnnotations 進行模型驗證

來源:互聯網
上載者:User

標籤:驗證   輔助   base   class   pac   表示   hang   ota   格式   

通過為模型類增加資料描述的 DataAnnotations ,我們可以容易地為應用程式增加驗證的功能。DataAnnotations 允許我們描述希望應用在模型屬性上的驗證規則,ASP.NET MVC 將會使用這些 DataAnnotations ,然後將適當的驗證資訊返回給使用者。

常用的 DataAnnotations 包括:

  1. Required 必須 – 表示這個屬性是必須提供內容的欄位
  2. DisplayName 顯示名 – 定義表單欄位的提示名稱
  3. StringLength 字串長度 – 定義字串類型的屬性的最大長度
  4. Range 範圍 – 為數字類型的屬性提供最大值和最小值
  5. Bind 綁定 – 列出在將請求參數綁定到模型的時候,包含和不包含的欄位
  6. ScaffoldColumn 支架列 - 在編輯表單的時候,需要隱藏起來的的字元
  7. Compare 比較 - 與制定的欄位值進行比較 具體見代碼
using System.Collections.Generic;using System.ComponentModel.DataAnnotations;namespace SKUOrderMVC.Models{    public class ChangePassword    {        [Required]        [Display(Name = "Email")]        [EmailAddress]        public string Email { get; set; }        [Required]        [DataType(DataType.Password)]        [StringLength(32, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]        [Display(Name = "Password")]        public string Password { get; set; }        [DataType(DataType.Password)]        [Display(Name = "Confirm password")]        [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]        public string ConfirmPassword { get; set; }    }}

當然還有其他的一些屬性,比如Regex等,不用輔助編碼就可以完成對資料輸入格式的驗證。

Asp.Net MVC 使用 DataAnnotations 進行模型驗證

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.