gpt4 book ai didi

asp.net-core - 在 MVC6 中创建自定义模型绑定(bind)器的正确方法是什么?

转载 作者:行者123 更新时间:2023-12-01 16:06:23 24 4
gpt4 key购买 nike

我正在尝试按照 this article 中的步骤操作使用 vNext 项目和 mvc 6。我一直在阅读代码 here但仍然有点不确定如何实现。

有人可以分享一个可行的示例或为我指出正确的方向吗?

我特别想知道如何注册自定义绑定(bind)器,以及由于 DefaultModelBinder 不可用而我将从哪些类继承。

最佳答案

示例模型 Binder :https://github.com/aspnet/Mvc/blob/dev/src/Microsoft.AspNet.Mvc.Core/ModelBinding/CancellationTokenModelBinder.cs

如何在Startup.cs中注册binder

public void ConfigureServices(IServiceCollection services) 
{
services.AddMvc().Configure<MvcOptions>(options =>
{
options.ModelBinders.Add(typeof(MyModelBinder));
});

关于asp.net-core - 在 MVC6 中创建自定义模型绑定(bind)器的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27448198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com