新聞中心
在開始之前,我不得不說明我已經(jīng)安裝了Visual Studio 2010 RC1,并使用它將老版本轉換為ASP.Net 4.0,大多數(shù)情況下,當你接收到來自用戶從form表單post來的信息后,你的驗證代碼往往會檢查相應的值是否存在,數(shù)據(jù)類型是否正確以及數(shù)據(jù)的范圍是否正確。

創(chuàng)新互聯(lián)公司:成立于2013年為各行業(yè)開拓出企業(yè)自己的“網(wǎng)站建設”服務,為1000多家公司企業(yè)提供了專業(yè)的成都網(wǎng)站設計、成都網(wǎng)站建設、網(wǎng)頁設計和網(wǎng)站推廣服務, 按需定制由設計師親自精心設計,設計的效果完全按照客戶的要求,并適當?shù)奶岢龊侠淼慕ㄗh,擁有的視覺效果,策劃師分析客戶的同行競爭對手,根據(jù)客戶的實際情況給出合理的網(wǎng)站構架,制作客戶同行業(yè)具有領先地位的。
如果將驗證代碼放到一個集中的地方時,那類似上面所說的改變會不會變得更簡單些?Model中的DataAnnotations正是為此而來,在MVC 2.0中,這一特性被包含在內。
DataAnnotations作為.net Framework的一部分已經(jīng)有一段時間了,但是MVC 2.0中增加了ModelMetaData類,這是儲存MetaData的容器,默認會使用同樣也是新增類的DataAnnotationsMetaDataProvider類。因為傳入的值會由Action方法接受model binding作為匹配傳入?yún)?shù)和action的參數(shù)而介入。
在MVC 2.0中,默認的model binder使用DataAnnotationsMetaDataProvider來獲取metadata中model binder嘗試匹配的對象,如果驗證用的metadata存在,則其會通過對對象的屬性和傳入的值比較來進驗證,這類meta由你通過使用標簽(Attribute)修飾屬性來實現(xiàn)。
下面例子中我通過原程序中添加聯(lián)系人這一過程來描述使用DataAnnotatioins的方法,這里我們使用自定義ViewModel,名為:ContactPersonViewModel。通過Contact.Add()這個action方法來添加聯(lián)系人,代碼如下:
- using System;
- using System.Collections.Generic;
- using System.Web.Mvc;
- using System.ComponentModel;
- namespace ContactManagerMVC.Views.ViewModels
- {
- public class ContactPersonViewModel
- {
- public int Id { get; set; }
- public string FirstName { get; set; }
- public string MiddleName { get; set; }
- public string LastName { get; set; }
- public DateTime DateOfBirth { get; set; }
- public IEnumerable
Type { get; set; } - }
- }
下面,我在為屬性添加一些標簽(Attribute):
- using System;
- using System.Collections.Generic;
- using System.Web.Mvc;
- using System.ComponentModel.DataAnnotations;
- using ContactManagerMVC.Attributes;
- using System.ComponentModel;
- namespace ContactManagerMVC.Views.ViewModels
- {
- public class ContactPersonViewModel
- {
- public int Id { get; set; }
- [Required(ErrorMessage = "Please provide a First Name!")]
- [StringLength(25, ErrorMessage = "First name must be less than 25 characters!")]
- [DisplayName("First Name")]
- public string FirstName { get; set; }
- [DisplayName("Middle Name")]
- public string MiddleName { get; set; }
- [Required(ErrorMessage = "Please provide a Last Name!")]
- [StringLength(25, ErrorMessage = "Last name must be less than 25 characters!")]
- [DisplayName("Last Name")]
- public string LastName { get; set; }
- [Required(ErrorMessage = "You must provide a Date Of Birth!")]
- [BeforeTodaysDate(ErrorMessage = "You can't add someone who hasn't been born yet!")]
- [DisplayName("Date Of Birth")]
- public DateTime? DateOfBirth { get; set; }
- public IEnumerable
Type { get; set; } - }
- }
上面標簽的絕大多數(shù)標簽都是在System.ComponentModel.Annotations命名空間內,只有RequiredAttribute標簽不在此命名空間內,這個標簽聲明此值必須是一個有效值,并且包含ErrorMessage屬性。這個屬性可以讓你傳入自定義錯誤信息。StringLengthAttribute標簽指定了屬性可以接受的最小值和***值范圍。當和RequiredAttribute標簽結合使用時,只需要設置可以接受的***值。DisplayNameAttribute用于設置屬性如何顯示。#p#
上面標簽中BeforeTodaysDateAttribute標簽并不是.net Framework所提供,這是一個自定義標簽,用于檢測日期是否比當前的日期要早,你可以看到ErrorMessage值被設置。這個標簽用于防止任何被添加到聯(lián)系人列表的聯(lián)系人還未出生,下面是這個標簽的代碼:
- using System.ComponentModel.DataAnnotations;
- using System;
- namespace ContactManagerMVC.Attributes
- {
- public class BeforeTodaysDateAttribute : ValidationAttribute
- {
- public override bool IsValid(object value)
- {
- if (value == null)
- {
- return true;
- }
- DateTime result;
- if (DateTime.TryParse(value.ToString(), out result))
- {
- if (result < DateTime.Now)
- {
- return true;
- }
- }
- return false;
- }
- }
- }
很簡單是吧,這個類繼承了ValidationAttribute并重寫了IsValid()虛方法,如果未提供值,或是值小于當前日期(DateTime.Now),則返回True.利用標簽(Attribute)的方式讓在一個集中的地方應用驗證規(guī)則變得簡單,現(xiàn)在,只要ContactPersonViewModel在程序中被用到了,則驗證規(guī)則同時也會被應用到。但現(xiàn)在DefaultModelBinder內的DataAnnotations被支持,下面來看新版本的Add Partial View:
- <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl
" %> - <% using (Html.BeginForm("Add", "Contact", FormMethod.Post, new { id = "AddContact" }))
- {%>
<%= Html.LabelFor(m => m.FirstName)%> <%= Html.TextBox(m => m.FirstName)%> - <%= Html.ValidationMessageFor(m => m.FirstName)%>
<%= Html.LabelFor(m => m.MiddleName)%> <%= Html.TextBox(m => m.MiddleName)%> <%= Html.LabelFor(m => m.LastName)%> <%= Html.TextBox(m => m.LastName)%> - <%= Html.ValidationMessageFor(m => m.LastName)%>
<%= Html.LabelFor(m => m.DateOfBirth)%> <%= Html.TextBox(m => m.DateOfBirth)%> - <%= Html.ValidationMessageFor(m => m.DateOfBirth)%>
<%= Html.LabelFor(m => m.Type)%> <%= Html.DropDownList("Type")%> - <% } %>
可以看出,這里使用新的強類型Html Helper.對前面項目修改的兩處是利用了jQuery代碼。***處是添加聯(lián)系人的Partial View是通過AJax提交,如果驗證失敗,則添加的form會再次被顯示,如果驗證通過,新的聯(lián)系人被添加到列表中,頁面會刷新繼而顯示更新后包含新聯(lián)系人的列表。
由于下面幾種原因,原來的Action方法需要被修正。首先修改action方法使其接受ContactPersonViewModel而不是ContactPerson作為參數(shù),這是因為相關的驗證規(guī)則應用于ContactPersonViewModel,如果不將參數(shù)類型改變,那model binder依然能將傳入的值和ContactPerson的屬性相匹配,但所有的驗證規(guī)則就不復存在了。第二個改變是檢查ModelState的IsValid屬性是否有效,否則整個驗證就變得毫無意義.
- [AcceptVerbs(HttpVerbs.Post)]
- public ActionResult Add([Bind(Exclude = "Id, Type")]ContactPersonViewModel person)
- {
- if (ModelState.IsValid)
- {
- var p = new ContactPerson
- {
- FirstName = person.FirstName,
- MiddleName = person.MiddleName,
- LastName = person.LastName,
- Type = Request.Form["Type"].ParseEnum
() - };
- if (person.DateOfBirth != null)
- p.DateOfBirth = (DateTime)person.DateOfBirth;
- ContactPersonManager.Save(p);
- return Content("Saved");
- }
- var personTypes = Enum.GetValues(typeof(PersonType))
- .Cast
() - .Select(p => new
- {
- ID = p,
- Name = p.ToString()
- });
- person.Type = new SelectList(personTypes, "ID", "Name");
- return PartialView(person);
- }
在model綁定過程中,我去掉了id和Type屬性,因為在把聯(lián)系人添加到數(shù)據(jù)庫以前并不會存在id屬性,而去掉Type屬性是因為在ViewModel中它的類型是SelectList,但在BLL層中ContactPerson對象中卻是枚舉類型,如果ModelState的IsValid屬性為True(注:既驗證通過),則ViewModel的屬性會和ContactPerson對象的屬性進行匹配,如果IsValid不為True,數(shù)據(jù)會回傳到View中顯示驗證失敗的相關信息。
上面代碼中我們注意到了Request.Form[“Type”]這個string類型的ParseEnum
- public static T ParseEnum
(this string token) - {
- return (T)Enum.Parse(typeof(T), token);
- }
- edit
這個action方法也是如此,除了對DateOfBirth進行編輯那部分:
<%= Html.LabelFor(m => m.DateOfBirth)%> <%= Html.EditorFor(m => m.DateOfBirth)%> - <%= Html.ValidationMessageFor(m => m.DateOfBirth)%>
這里我并沒有使用TextBoxFor
- <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl
" %> - <%= Html.TextBox("", Model.HasValue ? Model.Value.ToShortDateString() : string.Empty) %>
雖然只有短短兩行代碼,但是可以讓時間日期如果為空時,什么都不顯示,而如果時間存在,則以ShortDate的格式顯示。
總結
本篇文章研究了ASP.Net MVC 2.0中利用DataAnnotations來進行驗證,現(xiàn)在這已經(jīng)是.net framework的一部分。文中還簡單的接觸了新版本中的一些特性,包括強類型的HTML Helper以及模板。本篇文章的代碼使用Visual Studio 2010 RC1創(chuàng)建的,所以代碼不能在VWD和Visual Studio的環(huán)境中調試。
當前標題:使用VisualStudio2010和MVC2.0增強驗證功能
文章分享:http://www.dlmjj.cn/article/coohdcj.html


咨詢
建站咨詢
