gpt4 book ai didi

c# - 模型上的 DataTypeAttribute 是否在 MVC 3 中进行验证?

转载 作者:可可西里 更新时间:2023-11-01 08:08:54 26 4
gpt4 key购买 nike

默认的 ASP.net MVC 3 Internet 应用程序模板包括以下模型:

public class RegisterModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }

[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
public string Email { get; set; }

[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }

[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}

在帐户/注册操作中,它要求输入电子邮件地址,但似乎您可以在此字段中输入任何内容,它会接受。

DataType(DataType.EmailAddress) 是否真的会触发验证?好像没有。如果它不验证类型,那么它的目的是什么?

最佳答案

据我所知,DataType 属性用于格式化,但仅当您使用 @Html.EditorFor(model => model.Field) 时才使用。

来自模型字段、cshtml 和生成的 HTML 的示例:

模型字段:

[Required]
[DataType(DataType.Text)]
[Display(Name = "Name")]
public string Name { get; set; }

[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }

[Required]
[DataType(DataType.MultilineText)]
[Display(Name = "Description")]
public string Desc { get; set; }

Cshtml:

<div class="form-section">
@Html.LabelFor(x => x.Name)
@Html.EditorFor(x => x.Name)
</div>

<div class="form-section">
@Html.LabelFor(x => x.Password)
@Html.EditorFor(x => x.Password)
</div>

<div class="form-section">
@Html.LabelFor(x => x.Desc)
@Html.EditorFor(x => x.Desc)
</div>

生成的 HTML:

<div class="form-section">
<label for="Name">Name</label>
<input class="text-box single-line" id="Name" name="Name" type="text" value="">
</div>
<div class="form-section">
<label for="Password">Password</label>
<input class="text-box single-line password" id="Password" name="Password" type="password" value="">
</div>
<div class="form-section">
<label for="Desc">Description</label>
<textarea class="text-box multi-line" id="Desc" name="Desc"></textarea>
</div>

我知道这是一篇旧帖子,但也许我可以为来这里的其他人阐明情况

编辑:

可能有一些验证附加到这些但只是客户端。不要依赖这些属性进行实际验证,这应该始终在服务器端完成(客户端仅用于用户体验)

关于c# - 模型上的 DataTypeAttribute 是否在 MVC 3 中进行验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6550487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com