我已使用Data Annotation在model属性上设置了两个验证,如下所示:
with open('E:\\Book\\1800.txt', "r", encoding='ISO-8859-1') as File_1800:
words_1800=(re.finditer('\w+', line.lower()) for line in File_1800)
我希望在某些特殊情况下进行部分验证。例如,我不希望在用户登录时检查最小长度,但仅在注册时检查。
任何人都可以知道如何实现这个目标吗?
答案 0 :(得分:1)
使用不同的ViewModel进行注册和登录,就像默认的asp.net-mvc实现一样。
您最终会得到3个类:您的模型本身,登录类和注册类。唯一具有密码长度验证的类应该是模型本身,而不是视图模型。使用你的控制器,你应该从ViewModel填充到模型(当做帖子时)或从模型填充到ViewModel(当做获取时)
登录ViewModel的示例(取自默认的MVC代码)
public class LoginViewModel
{
[Required]
[Display(Name = "Email")]
[EmailAddress]
public string Email { get; set; }
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[Display(Name = "Remember me?")]
public bool RememberMe { get; set; }
}
还有一个Register ViewModel,也来自默认的MVC
public class RegisterViewModel
{
[Required]
[EmailAddress]
[Display(Name = "Email")]
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; }
}
Register ViewModel和Model本身的使用示例,所有默认MVC
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Register(RegisterViewModel model)
{
if (ModelState.IsValid)
{
var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
var result = await UserManager.CreateAsync(user, model.Password);
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);
}