溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MVC中數(shù)據(jù)驗證的實例

發(fā)布時間:2020-07-09 10:54:43 來源:億速云 閱讀:158 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關(guān)MVC中數(shù)據(jù)驗證的實例,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

                                                           一、一般情況

對于使用過MVC框架的人來說,對MVC的數(shù)據(jù)驗證不會陌生,比如,我有一個Model如下:

1     public class UserInfo2     {3         [Required(ErrorMessage = "UserName不可為空1111")]4         public string UserName { get; set; }5         public string Sex { get; set; }6         public string Mobile { get; set; }7         public string Address { get; set; }8     }

前端:

 1 @using (Html.BeginForm()) 
 2 { 3     @Html.AntiForgeryToken() 4     <div class="form-horizontal"> 5         <h5>UserInfo</h5> 6         <hr /> 7         @Html.ValidationSummary(true, "", new { @class = "text-danger" }) 8         <div class="form-group"> 9             @Html.LabelFor(model => model.UserName, htmlAttributes: new { @class = "control-label col-md-2" })10             <div class="col-md-10">11                 @Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control" } })12                 @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" })13             </div>14         </div>15         <div class="form-group">16             @Html.LabelFor(model => model.Sex, htmlAttributes: new { @class = "control-label col-md-2" })17             <div class="col-md-10">18                 @Html.EditorFor(model => model.Sex, new { htmlAttributes = new { @class = "form-control" } })19                 @Html.ValidationMessageFor(model => model.Sex, "", new { @class = "text-danger" })20             </div>21         </div>22         <div class="form-group">23             @Html.LabelFor(model => model.Mobile, htmlAttributes: new { @class = "control-label col-md-2" })24             <div class="col-md-10">25                 @Html.EditorFor(model => model.Mobile, new { htmlAttributes = new { @class = "form-control" } })26                 @Html.ValidationMessageFor(model => model.Mobile, "", new { @class = "text-danger" })27             </div>28         </div>29         <div class="form-group">30             @Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "control-label col-md-2" })31             <div class="col-md-10">32                 @Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })33                 @Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })34             </div>35         </div>36         <div class="form-group">37             <div class="col-md-offset-2 col-md-10">38                 <input type="submit" value="Create" class="btn btn-default" />39             </div>40         </div>41     </div>42 }

效果:

MVC中數(shù)據(jù)驗證的實例

是的,MVC可以通過對一些屬性添加一定的特性來對數(shù)據(jù)進行驗證。這對大家來說可能并不陌生。

如果僅僅是這樣就完事了,那么也就沒事么意思了。

二、常用情況

在實際的開發(fā)中,我們大都是通過EF,或者其他方式,使得數(shù)據(jù)庫中的每一個表或視圖,都在代碼中對應(yīng)的一個類模型,對于通過數(shù)據(jù)庫生成的模型,我們不宜修改,退一步講,即使我們在這個類中對一些屬性增加一些數(shù)據(jù)驗證的特性,那么,數(shù)據(jù)庫發(fā)生變化后,如果我再重新生成這些Model,我們之前添加好的驗證特性將沒有了,那么,我們?nèi)绾谓鉀Q這樣的問題呢?

假如:

1     public class UserInfo2     {    
3         public string UserName { get; set; }4         public string Sex { get; set; }5         public string Mobile { get; set; }6         public string Address { get; set; }7     }

UserInfo是通過數(shù)據(jù)庫生成的一個模型,對于數(shù)據(jù)庫生成的模型,我們不宜修改。但那是,我們又需要對這個模型中的某些屬性進行數(shù)據(jù)驗證,比如需要對UserName屬性進行非空驗證,那么我們?nèi)绾巫瞿兀?/p>

大家通常會想到部分類,是的,我們可以通過部分類來解決上述問題。

首先,我們將模型中的類加上關(guān)鍵字 partial ,然后我們再寫一個這個模型的部分類。

1     public partial class UserInfo2     {3         [Required(ErrorMessage = "UserName不可為空1111")]4         public string UserName { get; set; }5     }

但是,這樣會提示我們一個錯誤,就是類中存在重復(fù)的屬性,是的,部分類中,屬性是不可以重名的。那么,我們該怎么辦呢,MVC框架已經(jīng)給了我們解決方案了。

我們可以這么寫:

1     [MetadataType(typeof(MeteUserInfo))]2     public partial class UserInfo3     {4         private class  MeteUserInfo5         {6             [Required(ErrorMessage = "UserName不可為空1111")]7             public string UserName { get; set; }8         }9     }

這樣,我們上述的問題就迎刃而解了。

關(guān)于MVC中數(shù)據(jù)驗證的實例就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI