更改每个控制器的模型绑定器而不是按类型或属性?
我希望能够在每个控制器或每个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ModelBinderAttribute。例子
You can use ModelBinderAttribute. Example
我建议您实现一个复合模型绑定器,如下所示
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.