【发布时间】:2015-11-13 16:21:12
【问题描述】:
诚然,我在 C# 和 MVC5 领域还很年轻,但每天都在学习更多,因此非常感谢您对我缺乏知识的耐心。
我已经阅读了我能找到的所有内容,但仍然无法使以下内容正常工作。老实说,我试图让更清洁的 .Trial(password) 工作,但意识到这可能超出了我的想象。那将是首选,但至少让这个丑陋的版本工作会很棒。 “试用”方法没有被我知道的调用,但是当我尝试用断点调试它时出现错误,无法检查。
.
我的 AccountViewModels.cs 中有以下内容
[Validator(typeof(RegisterViewModelValidator))]
public class RegisterViewModel {
[Display(Name = "User name")]
public string UserName { get; set; }
[Display(Name = "Email")]
public string Email { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
public string ConfirmPassword { get; set; }
}
public class RegisterViewModelValidator : AbstractValidator<RegisterViewModel> {
public RegisterViewModelValidator() {
RuleFor(x => x.UserName)
.NotEmpty()
.WithMessage("Username is required");
RuleFor(x => x.Email)
.NotNull()
.WithMessage("E-mail is required")
.EmailAddress()
.WithMessage("E-mail is invalid");
RuleFor(x => x.Password)
.Must(password => Trial(password))
.WithMessage("Password must triggered");
RuleFor(x => x.ConfirmPassword)
.Equal(x => x.Password)
.WithMessage("Confimation odes not match");
}
private bool Trial(string value) {
if (string.IsNullOrEmpty(value)) {
return false;
} else {
return true;
}
}
}
以及我的 Global.asax 中的以下内容
FluentValidation.Mvc.FluentValidationModelValidatorProvider.Configure();
这是我的看法
<div id="regesterFormContainer" class="col-md-4">
@using (Html.BeginForm("Register", "Account", FormMethod.Post, new { id = "regesterForm", autocomplete = "off" })) {
@Html.AntiForgeryToken()
@Html.ValidationMessageFor(m => m.UserName, string.Empty, new { @class = "error-class" })
@Html.TextBoxFor(m => m.UserName, new { id = "regesterUserNam", placeholder = "Username", @class = "registerFormInputs", title = "4-20 characters with letters, numbers, - and _" })
@Html.ValidationMessageFor(m => m.Email, string.Empty, new { @class = "error-class" })
@Html.TextBoxFor(m => m.Email, new { id = "regesterEhMell", placeholder = "E-Mail Address", @class = "registerFormInputs", title = "Must be a valid e-mail address." })
@Html.ValidationMessageFor(m => m.Password, string.Empty, new { @class = "error-class" })
@Html.PasswordFor(m => m.Password, new { id = "regesterPess", placeholder = "Password", @class = "registerFormInputs", title = "5-20 characters. An Uppercase letter, lowercase letter and a number are required." })
@Html.ValidationMessageFor(m => m.ConfirmPassword, string.Empty, new { @class = "error-class" })
@Html.PasswordFor(m => m.ConfirmPassword, new { id = "regesterConPess", placeholder = "Confirm Password", @class = "registerFormInputs", title = "Must match password above." })
<div class="registerSubmitFrame">
<input type="submit" class="registerSubmit" value="Register">
</div>
<p><a id="showExtReg">Show external registration options</a></p>
}
</div>
适用的控制器块
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Register(RegisterViewModel model) {
if (ModelState.IsValid) {
var user = new ApplicationUser { UserName = model.UserName, Email = model.Email };
var result = await UserManager.CreateAsync(user, model.Password);
var validator = new RegisterViewModelValidator();
validator.Validate(model); // viewmodel should be passed into the controller method on POST via model binding.
if (result.Succeeded) {
await SignInManager.SignInAsync(user, isPersistent: false, rememberBrowser: false);
// For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
// Send an email with this link
// string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
// var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
// await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");
return RedirectToAction("Index", "Home");
}
AddErrors(result);
}
// If we got this far, something failed, redisplay form
return View(model);
}
感谢您的时间和耐心
【问题讨论】:
-
编辑它以删除密码的其他验证部分,只留下“必须”
-
你能发布抛出的错误吗?
-
它可以正常工作,当我在本地机器上测试时它会遇到断点。
-
"当我尝试使用断点调试它时出现错误。"什么错误?发布您的控制器代码..
-
AbstractValidator.cs not found 您需要找到 AbstractValidator.cs 才能查看当前调用堆栈帧的来源。它确实命中了断点,但无法单步执行代码。一步进去,我明白了。当你说这只是工作并达到断点时,你的意思是为你触发了试验方法,并给出了你的验证结果?
标签: c# fluentvalidation