欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

.NET 驗(yàn)證組件 FluentValidation

freeflydom
2024年9月3日 20:37 本文熱度 811

前言

一個(gè) .NET 驗(yàn)證框架,支持鏈?zhǔn)讲僮鳎子诶斫猓δ芡晟疲M件內(nèi)提供十幾種常用驗(yàn)證器,可擴(kuò)展性好,支持自定義驗(yàn)證器,支持本地化多語言。

項(xiàng)目介紹

FluentValidation 是一個(gè)開源的 .NET 庫(kù),用于驗(yàn)證對(duì)象的屬性。

它提供了一種簡(jiǎn)單而強(qiáng)大的方式來定義和執(zhí)行驗(yàn)證規(guī)則,使驗(yàn)證邏輯的編寫和維護(hù)更加直觀和便捷。

相較于傳統(tǒng)的數(shù)據(jù)注解,F(xiàn)luentValidation 提供了更靈活、可擴(kuò)展的驗(yàn)證規(guī)則定義方式。

通過流暢且易于理解的語法,它顯著提升了代碼的可讀性和可維護(hù)性。

項(xiàng)目使用

FluentValidation 11 支持以下平臺(tái):

.NET Core 3.1、.NET 5、.NET 6、.NET 7、.NET 8、.NET Standard 2.0

1、安裝FluentValidation

通過 NuGet 包管理器或 dotnet CLI 進(jìn)行安裝。

dotnet add package FluentValidation

或NuGet 包管理器

2、Program.cs

using FluentValidation;

using FluentValidation.AspNetCore;

using MicroElements.Swashbuckle.FluentValidation.AspNetCore;


var builder = WebApplication.CreateBuilder(args);

var services = builder.Services;


// Asp.Net stuff

services.AddControllers();

services.AddEndpointsApiExplorer();


// Add Swagger

services.AddSwaggerGen();


// Add FV

services.AddFluentValidationAutoValidation();

services.AddFluentValidationClientsideAdapters();


// Add FV validators

services.AddValidatorsFromAssemblyContaining<Program>();


// Add FV Rules to swagger

services.AddFluentValidationRulesToSwagger();


var app = builder.Build();


// Use Swagger

app.UseSwagger();

app.UseSwaggerUI();


app.MapControllers();


app.Run();

3、Startup.cs

public void ConfigureServices(IServiceCollection services)

{

    // Asp.net stuff

    services.AddControllers();

    

    // HttpContextValidatorRegistry requires access to HttpContext

    services.AddHttpContextAccessor();


    // Register FV validators

    services.AddValidatorsFromAssemblyContaining<Startup>(lifetime: ServiceLifetime.Scoped);


    // Add FV to Asp.net

    services.AddFluentValidationAutoValidation();


    // Add swagger

    services.AddSwaggerGen(c =>

    {

        c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });

    });


    // [Optional] Add INameResolver (SystemTextJsonNameResolver will be registered by default)

    // services.AddSingleton<INameResolver, CustomNameResolver>();


    // Adds FluentValidationRules staff to Swagger. (Minimal configuration)

    services.AddFluentValidationRulesToSwagger();


    // [Optional] Configure generation options for your needs. Also can be done with services.Configure<SchemaGenerationOptions>

    // services.AddFluentValidationRulesToSwagger(options =>

    // {

    //     options.SetNotNullableIfMinLengthGreaterThenZero = true;

    //     options.UseAllOffForMultipleRules = true;

    // });


    // Adds logging

    services.AddLogging(builder => builder.AddConsole());

}


public void Configure(IApplicationBuilder app, IHostingEnvironment env)

{

    app.UseRouting();


    app.UseEndpoints(endpoints =>

    {

        endpoints.MapControllers();

    });


    // Adds swagger

    app.UseSwagger();


    // Adds swagger UI

    app.UseSwaggerUI(c =>

    {

        c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");

    });

}

5、支持的驗(yàn)證器

INotNullValidator(NotNull)

INotEmptyValidator(NotEmpty)

ILengthValidator(對(duì)于字符串:Length、MinimumLength、MaximumLength、ExactLength;對(duì)于數(shù)組:MinItems、MaxItems)

IRegularExpressionValidator(Email、Matches)

IComparisonValidator(GreaterThan、GreaterThanOrEqual、LessThan、LessThanOrEqual)

IBetweenValidator(InclusiveBetween、ExclusiveBetween)

6、可擴(kuò)展

可以將 FluentValidationRule 注冊(cè)到 ServiceCollection 中。

自定義規(guī)則名稱將替換具有相同名稱的默認(rèn)規(guī)則。

可以通過 FluentValidationRules.CreateDefaultRules() 獲取默認(rèn)規(guī)則的完整列表。

默認(rèn)規(guī)則列表: Required(必填) NotEmpty(非空) Length(長(zhǎng)度) Pattern(模式) Comparison(比較) Between(區(qū)間)

new FluentValidationRule("Pattern")

{

    Matches = propertyValidator => propertyValidator is IRegularExpressionValidator,

    Apply = context =>

    {

        var regularExpressionValidator = (IRegularExpressionValidator)context.PropertyValidator;

        context.Schema.Properties[context.PropertyKey].Pattern = regularExpressionValidator.Expression;

    }

}

7、Swagger 模型和驗(yàn)證器

public class Sample

{

    public string PropertyWithNoRules { get; set; }


    public string NotNull { get; set; }

    public string NotEmpty { get; set; }

    public string EmailAddress { get; set; }

    public string RegexField { get; set; }


    public int ValueInRange { get; set; }

    public int ValueInRangeExclusive { get; set; }


    public float ValueInRangeFloat { get; set; }

    public double ValueInRangeDouble { get; set; }

}


public class SampleValidator : AbstractValidator<Sample>

{

    public SampleValidator()

    {

        RuleFor(sample => sample.NotNull).NotNull();

        RuleFor(sample => sample.NotEmpty).NotEmpty();

        RuleFor(sample => sample.EmailAddress).EmailAddress();

        RuleFor(sample => sample.RegexField).Matches(@"(\d{4})-(\d{2})-(\d{2})");


        RuleFor(sample => sample.ValueInRange).GreaterThanOrEqualTo(5).LessThanOrEqualTo(10);

        RuleFor(sample => sample.ValueInRangeExclusive).GreaterThan(5).LessThan(10);


        // WARNING: Swashbuckle implements minimum and maximim as int so you will loss fraction part of float and double numbers

        RuleFor(sample => sample.ValueInRangeFloat).InclusiveBetween(1.1f, 5.3f);

        RuleFor(sample => sample.ValueInRangeDouble).ExclusiveBetween(2.2, 7.5f);

    }

}

8、包含驗(yàn)證器

public class CustomerValidator : AbstractValidator<Customer>

{

    public CustomerValidator()

    {

        RuleFor(customer => customer.Surname).NotEmpty();

        RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");


        Include(new CustomerAddressValidator());

    }

}


internal class CustomerAddressValidator : AbstractValidator<Customer>

{

    public CustomerAddressValidator()

    {

        RuleFor(customer => customer.Address).Length(20, 250);

    }

}

高級(jí)用法

1、異步驗(yàn)證

RuleForAsync(x => x.UserCode).MustAsync(async (usercode, cancellation) =>

{

    var code = await _userService.IsUserNameUniqueAsync(usercode);

    return code;

}).WithMessage("用戶編碼已存在");

2、條件驗(yàn)證

When(x => x.IsAdmin, () =>

{

    RuleFor(x => x.Super).NotEmpty().WithMessage("管理必須是超級(jí)管理員");

});

3、自定義驗(yàn)證規(guī)則

RuleFor(x => x.Number).Custom((value, context) =>

{

    if (value < 10 || value > 1000)

    {

        context.AddFailure("數(shù)字必須在10 到1000之間");

    }

});

4、自定義錯(cuò)誤消息

RuleFor(x => x.UserName).NotEmpty().WithMessage("用戶名稱不能為空")

       .Matches(@"^\d{6}$").WithMessage("請(qǐng)輸入有效的6位數(shù)字用戶名稱"); 

項(xiàng)目地址

GitHub:https://github.com/FluentValidation/FluentValidation

總結(jié)

FluentValidation 是一個(gè)優(yōu)雅且功能強(qiáng)大的驗(yàn)證庫(kù),它在提升代碼可讀性和可維護(hù)性的同時(shí),保持了高度的靈活性。

無論是簡(jiǎn)單的驗(yàn)證需求還是復(fù)雜的業(yè)務(wù)規(guī)則,F(xiàn)luentValidation 都能讓我們輕松確保數(shù)據(jù)的有效性。

如果大家項(xiàng)目中有驗(yàn)證需求的,可以試一試,提高開發(fā)效率。

轉(zhuǎn)自https://www.cnblogs.com/1312mn/p/18393208



該文章在 2024/9/4 10:19:30 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved