asp.net mvc 自定义模型绑定器

发布于 2024-10-03 20:40:17 字数 102 浏览 3 评论 0原文

我的模型中有某种类型的属性,它是一个自定义对象。

该对象采用字符串作为 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 技术交流群。

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

发布评论

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

评论(1

昇り龍 2024-10-10 20:40:17

是的。使用自定义模型绑定器,您可以明确控制如何使用值来构造对象。这可以包括路由值、表单发布值以及来自会话存储的值。

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.

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