更改每个控制器的模型绑定器而不是按类型或属性?

发布于 2024-08-16 02:28:28 字数 135 浏览 4 评论 0原文

我希望能够在每个控制器或每个 ActionMethod 的基础上交换模型绑定器。

AFAIK 框架支持的唯一选项是将模型绑定器绑定到特定类型。

如何以干净的方式更改每个控制器或每个 ActionMethod 的模型绑定器?

I'd like to be able to swap model binders out on a per Controller or per ActionMethod basis.

AFAIK the only options supported by the framework are to bind a model binder to a specific type.

How could I change my model binder per Controller or per ActionMethod in a clean way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

超可爱的懒熊 2024-08-23 02:28:28

您可以使用 ModelBinderAttribute。例子

[HttpPost]
public ActionResult CreateTask([ModelBinder(typeof(TaskBinder))] Task task)

You can use ModelBinderAttribute. Example

[HttpPost]
public ActionResult CreateTask([ModelBinder(typeof(TaskBinder))] Task task)
故笙诉离歌 2024-08-23 02:28:28

我建议您实现一个复合模型绑定器,如下所示

http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/11/19/a-better-model-binder-addendum.aspx

这是一种链将应用职责和可以处理绑定的模型绑定器。

I would suggset you to implement a Composite model binder like here

http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/11/19/a-better-model-binder-addendum.aspx

It's a kind a chain of responsabilities and the model binder that can handle the bind will be applied.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文