GWT 2.1 RequestFactory 多级关系群体

发布于 2024-10-13 09:39:52 字数 259 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

薄荷→糖丶微凉 2024-10-20 09:39:52

“点符号”就可以解决这个问题。使用 ... with("B1", "B1.C1") ... 可以访问 C1。

The "dot notation" does the trick. Using ... with("B1", "B1.C1") ... gives access to C1.

笑,眼淚并存 2024-10-20 09:39:52

如果您使用的是 GWT 编辑器框架,则可以使用 RequestFactoryEditorDelegate.getPaths()

If you're using the GWT Editor framework, you can generate the argument for the with() call by using RequsetFactoryEditorDelegate.getPaths()

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