Lztkdr.ParameterBinder 1.3.0

dotnet add package Lztkdr.ParameterBinder --version 1.3.0
NuGet\Install-Package Lztkdr.ParameterBinder -Version 1.3.0
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="Lztkdr.ParameterBinder" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lztkdr.ParameterBinder --version 1.3.0
#r "nuget: Lztkdr.ParameterBinder, 1.3.0"
#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 Lztkdr.ParameterBinder as a Cake Addin
#addin nuget:?package=Lztkdr.ParameterBinder&version=1.3.0

// Install Lztkdr.ParameterBinder as a Cake Tool
#tool nuget:?package=Lztkdr.ParameterBinder&version=1.3.0

Lztkdr.ParameterBinder

一个针对 Asp.NET Core MVC/WebAPI 的自动参数绑值中间件。

支持的绑定方式

  • None
  • Body
  • Query
  • Form
  • Header
  • Cookie
  • Route

使用指南

1. 安装


Install-Package Lztkdr.ParameterBinder

2. Startup.cs 中启用

  • 类库引用
using Lztkdr.ParameterBinder;
  • 放置位置
app.UseRouting();
//使用请求参数自动装配器
app.UseAutoBinder();

3. 使用特性 [AutoBinder]

  • 使用示例
 [HttpGet]
 public IActionResult Test(
     [FromQuery] string sid,
     [AutoBinder] int id,
     [AutoBinder] string username,
     [AutoBinder] DateTime dt,
     [AutoBinder] string[] names,
     [AutoBinder] Gender gender,
     [AutoBinder] List<Gender> genders,
     [AutoBinder] Uri uri,
     [AutoBinder] Guid newId,
     [AutoBinder] TimeSpan ts,
     [AutoBinder(AutoType.Query)] LogInfo info,
     [AutoBinder(AutoType.Header)] Dictionary<string, string> header,
     [AutoBinder(AutoType.Header, "User-Agent")] string userAgent,
     [AutoBinder(AutoType.Route)] Dictionary<string, string> route,
     [AutoBinder(AutoType.Route, "controller")] string controller,
     [AutoBinder(AutoType.Route)] RouteInfo routeInfo,
     [AutoBinder(AutoType.Cookie)] string username2,
     [AutoBinder(AutoType.Cookie)] Dictionary<string, string> cookie,
     [AutoBinder] string defValue = "123",
     [AutoBinder] int pagesize = 100
     )
 {
     return Ok();
 }


 [HttpPost]
 public IActionResult TestPost(
     [AutoBinder(AutoType.Query)] string sid,
     [AutoBinder(AutoType.Body, "childgroups[0].fields")] List<fieldInfo> lstFld
     )
 {
    return Ok();
 }

贡献代码

Lztkdr.ParameterBinder 遵循 Apache-2.0 开源协议,欢迎大家一起完善,提交 PRIssue

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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.3.0 77 2/23/2024
1.0.2 443 5/18/2021
1.0.1 271 5/13/2021
1.0.0 391 5/9/2021
0.0.1 346 5/9/2021