Nancy.FixQueryDictionary 1.1.3

dotnet add package Nancy.FixQueryDictionary --version 1.1.3
NuGet\Install-Package Nancy.FixQueryDictionary -Version 1.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nancy.FixQueryDictionary" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nancy.FixQueryDictionary --version 1.1.3
#r "nuget: Nancy.FixQueryDictionary, 1.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nancy.FixQueryDictionary as a Cake Addin
#addin nuget:?package=Nancy.FixQueryDictionary&version=1.1.3

// Install Nancy.FixQueryDictionary as a Cake Tool
#tool nuget:?package=Nancy.FixQueryDictionary&version=1.1.3

Nancy.FixQueryDictionary

简介

一个用来修复Nancy Http请求参数绑定时空参数绑定出错的nuget包

使用方法

1.安装Nancy.FixQueryDictionary

Install-Package Nancy.FixQueryDictionary

2.引入命名空间

using Nancy.ModelBinding;

3.在前置拦截器中调用修复方法

/// <summary>
/// 前置拦截器
/// </summary>
/// <param name="ctx">NancyContext上下文对象</param>
/// <returns></returns>
private Response BeforeRequest(NancyContext ctx)
{
   ctx.FixQueryDictionary();
   //TODO:

   return ctx.Response;
}
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 275 12/30/2021
1.1.2 240 12/27/2021
1.1.1 258 12/27/2021
1.1.0 283 12/24/2021
1.0.9 260 12/24/2021
1.0.8 284 12/21/2021
1.0.7 276 12/21/2021
1.0.6 307 12/14/2021
1.0.5 288 12/9/2021
1.0.4 331 12/9/2021
1.0.3 310 12/9/2021
1.0.2 313 12/9/2021
1.0.1 319 12/9/2021
1.0.0 330 12/9/2021

第14次发布,演示GitHub持续集成持续交付部署(CICD)