将 PropertyEditor 关联到特定控制器
有没有办法将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法与控制器关联。
PropertyEditorRegistrar
对于registerCustomEditor()
只有两个签名:用于整个属性类,以及用于属性名称。第二个签名在 Grails 1.3.6 之前不起作用,这是一个错误 GRAILS-6592。
如此。
从 Grails 1.3.6 开始也是
There is no way to associate with a Controller.
PropertyEditorRegistrar
has only two signatures forregisterCustomEditor()
: 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
will work since Grails 1.3.6.