GWT RequestFactory 实体类型初始化
我正在查看 DynatableRF 示例,我想知道为什么在 SummaryWidget 中创建新的 Person 实例时,地址和时间表等子字段不会自动填充。有没有比手动实例化树中每个非原始子字段的新实例更好的方法?
I was looking over the DynatableRF example and I was wondering why in SummaryWidget when you create a new Person instance the subfields like address and schedule are not auto-populated. Is there a better way than to manually instantiate a new instance of every non-primitive subfield down the tree?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
框架无法自动填充子字段,因为它不知道您是否想要这些字段中的实例或希望它们为空。在不同的情况下你想要不同的东西。
听起来您要求的是依赖注入,在这种情况下 GIN (GWT INjection) 项目可以提供帮助。
The framework can't auto-populate subfields because it won't know if you want instances in those fields or you want them to be null. You want different things in different circumstances.
It sounds like what you are asking for is Dependency Injection in which case the GIN (GWT INjection) project can help.