what are the differences between [DataType(DataType.EmailAddress)] & [EmailAddress]

≡放荡痞女 提交于 2019-12-07 03:35:45

问题


I am trying to understand what are the main differecnes between using [DataType(DataType.EmailAddress)] & [EmailAddress].

inside a model class:-

public class MYViewModel {
[DataType(DataType.EmailAddress)] OR [EmailAddress]
public string Email { get; set; }

i did a test and the two attributes will do the following:-

  1. will prevent users from adding invalud email address

  2. will display the value as "EmailTo:..."

but i can not find any differences in respect to the functionality , of course if i use html.TextboxFor then the Datatype will not have any effect, while if i use html.EditorFor then the Datatype data annotation will work,, but i am talking about the differences in respect to the technical implementation ?


回答1:


Hope this clarifies...

As you noted, DataType attributes are primarily used for formatting, not validation. The reason it seems to work is:

  • @Html.EditorFor renders the HTML5 <input type="email" .... which defers to the client/browser to do validation. If the browser complies, then client side validation occurs. It will "work" because the client validated it for you (this is not server side validation however)

You can test it by changing @Html.EditorFor to @Html.TextBoxFor in your view, which will render the input field as <input type="text" ...> (a standard text input field, not HTML5 email).


Sample Test

Given a model with something like this:

public class User
{
    [Required(ErrorMessage = "Email must be provided")]
    [DataType(DataType.EmailAddress, ErrorMessage = "this doesn't do email format validation")]        
    [EmailAddress(ErrorMessage = "Not a valid Email")] //Comment un-comment to see effect
    public string EmailAddress { get; set; }

    [Required(ErrorMessage = "Name must be provided")]        
    public string Name { get; set; }
}

A view using @Html.TextBoxFor instead of @Html.EditorFor to take out HTML5 client side validation in your test:

@Html.TextBoxFor(model => model.EmailAddress,....

And a controller like so:

public ActionResult CheckUser(User user)
{
    ViewBag.Foo = string.Empty;
    if(Request.HttpMethod == HttpMethod.Post.ToString())
    {
        ViewBag.Foo = ModelState.IsValid ? "User Model validated" : "Failed Model Validation";
    }
    return View();
}

If you:

  1. comment out [EmailAddress] attribute, leaving only [DataType(DataType.EmailAddress)] your model is valid with any text (no email format validation)
    • if you put "foo" your model is "valid", no error message.
  2. leave it in, you will get "server side" email format validation
    • if you put "foo", it will fail and the "Not a valid Email" error message is displayed

Hth...



来源:https://stackoverflow.com/questions/26316508/what-are-the-differences-between-datatypedatatype-emailaddress-emailaddre

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!