GWT 2.1 RequestFactory 多级关系群体
我正在使用 GWT 2.1 及其 RequestFactory。据我了解,在对对象 A 的请求上使用 with() 方法,使我能够填充关系,以便我可以从 A 访问 B1 和 B2。是否可以填充超出级别 1 的关系,以便我可以访问 C1 和 C2从 A 经 B1、B2?
A
|
---------
| |
B1 B2
| |
C1 C2
I'm using GWT 2.1 along with its RequestFactory. I understand, using the with() methode on a request for an object A, enables me to populate relations so that I can access B1 and B2 from A. Is it possible to populate relations beyond level 1 so that I can access C1 and C2 from A via B1, B2?
A
|
---------
| |
B1 B2
| |
C1 C2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“点符号”就可以解决这个问题。使用
... with("B1", "B1.C1") ...
可以访问 C1。The "dot notation" does the trick. Using
... with("B1", "B1.C1") ...
gives access to C1.如果您使用的是 GWT 编辑器框架,则可以使用
RequestFactoryEditorDelegate.getPaths()
If you're using the GWT Editor framework, you can generate the argument for the
with()
call by usingRequsetFactoryEditorDelegate.getPaths()