asp.net mvc 自定义模型绑定器
我的模型中有某种类型的属性,它是一个自定义对象。
该对象采用字符串作为 ctor 参数。
是否可以让模型绑定器自动将表单中的字符串插入到特定对象的构造函数中?
I have in my model a property of a certain type, it's a custom object.
This object takes a string as a ctor argument.
Is it possible to have the model binder automatic insert a string from a form into the ctor of the particular object ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。使用自定义模型绑定器,您可以明确控制如何使用值来构造对象。这可以包括路由值、表单发布值以及来自会话存储的值。
yes it is. With a custom model binder, you can explicitly control exactly how values are used to construct your object. This can include route values, form posted values as well as values from the session store.