真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何對MVC進(jìn)行數(shù)據(jù)驗(yàn)證-創(chuàng)新互聯(lián)

這篇文章主要介紹如何對MVC進(jìn)行數(shù)據(jù)驗(yàn)證,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)自2013年起,公司以成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、系統(tǒng)開發(fā)、網(wǎng)絡(luò)推廣、文化傳媒、企業(yè)宣傳、平面廣告設(shè)計(jì)等為主要業(yè)務(wù),適用行業(yè)近百種。服務(wù)企業(yè)客戶1000+,涉及國內(nèi)多個(gè)省份客戶。擁有多年網(wǎng)站建設(shè)開發(fā)經(jīng)驗(yàn)。為企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、創(chuàng)意設(shè)計(jì)、宣傳推廣等服務(wù)。 通過專業(yè)的設(shè)計(jì)、獨(dú)特的風(fēng)格,為不同客戶提供各種風(fēng)格的特色服務(wù)。

一、一般情況

對于使用過MVC框架的人來說,對MVC的數(shù)據(jù)驗(yàn)證不會(huì)陌生,比如,我有一個(gè)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()
  
    
UserInfo
         @Html.ValidationSummary(true, "", new { @class = "text-danger" })            @Html.LabelFor(model => model.UserName, htmlAttributes: new { @class = "control-label col-md-2" })                @Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control" } })         @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" })       

    

           @Html.LabelFor(model => model.Sex, htmlAttributes: new { @class = "control-label col-md-2" })                @Html.EditorFor(model => model.Sex, new { htmlAttributes = new { @class = "form-control" } })         @Html.ValidationMessageFor(model => model.Sex, "", new { @class = "text-danger" })       

    

           @Html.LabelFor(model => model.Mobile, htmlAttributes: new { @class = "control-label col-md-2" })                @Html.EditorFor(model => model.Mobile, new { htmlAttributes = new { @class = "form-control" } })         @Html.ValidationMessageFor(model => model.Mobile, "", new { @class = "text-danger" })       

    

           @Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "control-label col-md-2" })                @Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })         @Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })       

    

                           

    

  

}

效果:

如何對MVC進(jìn)行數(shù)據(jù)驗(yàn)證

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

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

二、常用情況

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

假如:

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

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

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

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

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

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

我們可以這么寫:

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

以上是“如何對MVC進(jìn)行數(shù)據(jù)驗(yàn)證”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)頁標(biāo)題:如何對MVC進(jìn)行數(shù)據(jù)驗(yàn)證-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/gcjgh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部