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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
- Nancy (>= 1.0.0)
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 | 315 | 12/30/2021 | |
1.1.2 | 269 | 12/27/2021 | |
1.1.1 | 287 | 12/27/2021 | |
1.1.0 | 312 | 12/24/2021 | |
1.0.9 | 294 | 12/24/2021 | |
1.0.8 | 326 | 12/21/2021 | |
1.0.7 | 307 | 12/21/2021 | |
1.0.6 | 337 | 12/14/2021 | |
1.0.5 | 322 | 12/9/2021 | |
1.0.4 | 363 | 12/9/2021 | |
1.0.3 | 341 | 12/9/2021 | |
1.0.2 | 342 | 12/9/2021 | |
1.0.1 | 354 | 12/9/2021 | |
1.0.0 | 359 | 12/9/2021 |
第14次发布,演示GitHub持续集成持续交付部署(CICD)