将 PropertyEditor 关联到特定控制器

发布于 2024-10-08 22:55:34 字数 175 浏览 7 评论 0原文

有没有办法将 PropertyEditor 关联到特定的控制器。

我可能想要为 DateTime 类提供两个 PropertyEditor,并希望将它们关联到不同的控制器。

或具有 2 个日期字段的域类,一个需要更改为 2010-12-23 至今,另一个需要更改为 2010-12-23 10:00:01

Is there a way to associate the PropertyEditor to a specific Controller.

I might want to have two PropertyEditor's for DateTime class, and want to associate them to different controllers.

or a domain class with 2 Date field, one need change 2010-12-23 to date, another need 2010-12-23 10:00:01

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

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

发布评论

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

评论(1

篱下浅笙歌 2024-10-15 22:55:34

无法与控制器关联。 PropertyEditorRegistrar 对于 registerCustomEditor() 只有两个签名:用于整个属性类,以及用于属性名称。
第二个签名在 Grails 1.3.6 之前不起作用,这是一个错误 GRAILS-6592
如此。

registry.registerCustomEditor(Date.class, 'startDate', new MyDateAddressEditor())

从 Grails 1.3.6 开始也是

There is no way to associate with a Controller. PropertyEditorRegistrar has only two signatures for registerCustomEditor(): for a whole property class, and for a property name.
The second signature didn't work before Grails 1.3.6, it's a bug GRAILS-6592.
So

registry.registerCustomEditor(Date.class, 'startDate', new MyDateAddressEditor())

will work since Grails 1.3.6.

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