码迷,mamicode.com
首页 > Web开发 > 详细

将FluentValidation配置为与ASP.NET MVC 5项目一起使用

时间:2019-11-01 22:23:52      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:public   image   redirect   type   temp   mvc   data   mvc 5   tar   

1.对mvc项目安装nuget    Install-Package FluentValidation.Mvc5

2.配置验证器

protected void Application_Start() {
    AreaRegistration.RegisterAllAreas();

    RegisterGlobalFilters(GlobalFilters.Filters);
    RegisterRoutes(RouteTable.Routes);

    FluentValidationModelValidatorProvider.Configure();
}

 

3.添加测试验证器

[Validator(typeof(PersonValidator))]
public class Person {
    public int Id { get; set; }
    public string Name { get; set; }
    public string Email { get; set; }
    public int Age { get; set; }
}
 
public class PersonValidator : AbstractValidator<Person> {
    public PersonValidator() {
        RuleFor(x => x.Id).NotNull();
        RuleFor(x => x.Name).Length(0, 10);
        RuleFor(x => x.Email).EmailAddress();
        RuleFor(x => x.Age).InclusiveBetween(18, 60);
    }
}

技术图片

 

 

        public ActionResult Create([CustomizeValidator(RuleSet = "MyRuleset")] Person person)
        {
            if (!ModelState.IsValid)
            { // re-render the view when validation failed.

                return View("Create", person);
            }

            TempData["notice"] = "Person successfully created";
            return RedirectToAction("Index");

        }

还可以在验证的时候指定规则集合

将FluentValidation配置为与ASP.NET MVC 5项目一起使用

标签:public   image   redirect   type   temp   mvc   data   mvc 5   tar   

原文地址:https://www.cnblogs.com/student-note/p/11779815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!