對MVC進行資料驗證詳解

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了MVC資料驗證的相關資料,具有一定的參考價值,感興趣的小夥伴們可以參考一下

一、一般情況

對於使用過MVC架構的人來說,對MVC的資料驗證不會陌生,比如,我有一個Model如下:


public class UserInfo  {    [Required(ErrorMessage = "UserName不可為空白1111")]    public string UserName { get; set; }    public string Sex { get; set; }    public string Mobile { get; set; }    public string Address { get; set; }  }

前端:


@using (Html.BeginForm()) {  @Html.AntiForgeryToken()  <p class="form-horizontal">    <h4>UserInfo</h4>    <hr />    @Html.ValidationSummary(true, "", new { @class = "text-danger" })    <p class="form-group">      @Html.LabelFor(model => model.UserName, htmlAttributes: new { @class = "control-label col-md-2" })      <p class="col-md-10">        @Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control" } })        @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" })      </p>    </p>    <p class="form-group">      @Html.LabelFor(model => model.Sex, htmlAttributes: new { @class = "control-label col-md-2" })      <p class="col-md-10">        @Html.EditorFor(model => model.Sex, new { htmlAttributes = new { @class = "form-control" } })        @Html.ValidationMessageFor(model => model.Sex, "", new { @class = "text-danger" })      </p>    </p>    <p class="form-group">      @Html.LabelFor(model => model.Mobile, htmlAttributes: new { @class = "control-label col-md-2" })      <p class="col-md-10">        @Html.EditorFor(model => model.Mobile, new { htmlAttributes = new { @class = "form-control" } })        @Html.ValidationMessageFor(model => model.Mobile, "", new { @class = "text-danger" })      </p>    </p>    <p class="form-group">      @Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "control-label col-md-2" })      <p class="col-md-10">        @Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })        @Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })      </p>    </p>    <p class="form-group">      <p class="col-md-offset-2 col-md-10">        <input type="submit" value="Create" class="btn btn-default" />      </p>    </p>  </p>}

效果:

是的,MVC可以通過對一些屬性添加一定的特性來對資料進行驗證。這對大家來說可能並不陌生。

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

二、常用情況

在實際的開發中,我們大都是通過EF,或者其他方式,使得資料庫中的每一個表或視圖,都在代碼中對應的一個類模型,對於通過資料庫產生的模型,我們不宜修改,退一步講,即使我們在這個類中對一些屬性增加一些資料驗證的特性,那麼,資料庫發生變化後,如果我再重建這些Model,我們之前添加好的驗證特性將沒有了,那麼,我們如何解決這樣的問題呢?

假如:


public class UserInfo  {      public string UserName { get; set; }    public string Sex { get; set; }    public string Mobile { get; set; }    public string Address { get; set; }  }

UserInfo是通過資料庫產生的一個模型,對於資料庫產生的模型,我們不宜修改。但那是,我們又需要對這個模型中的某些屬性進行資料驗證,比如需要對UserName屬性進行非空驗證,那麼我們如何做呢?

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

首先,我們將模型中的類加上關鍵字 partial ,然後我們再寫一個這個模型的部分類。


public partial class UserInfo  {    [Required(ErrorMessage = "UserName不可為空白1111")]    public string UserName { get; set; }  }

但是,這樣會提示我們一個錯誤,就是類中存在重複的屬性,是的,部分類中,屬性是不可以重名的。那麼,我們該怎麼辦呢,MVC架構已經給了我們解決方案了。

我們可以這麼寫:


[MetadataType(typeof(MeteUserInfo))]  public partial class UserInfo  {    private class MeteUserInfo    {      [Required(ErrorMessage = "UserName不可為空白1111")]      public string UserName { get; set; }    }  }

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.