最佳实践,以不同形式重用 RequestFactory 调用

发布于 2024-12-27 04:12:45 字数 592 浏览 2 评论 0原文

我有几个使用相同列表框的表单。 ListBox 是通过 RequestFactory 调用填充的,例如,从每个演示者调用此代码以填充 ListBox。

EntityBaseRequestContext context =  entityContextProvider.get();
    context.getDomaineValeursByName("DomaineActivite").fire(new Receiver<List<DomaineValeursProxy>>() {
        @Override
        public void onSuccess(List<DomaineValeursProxy> domaineValeursProxyList) {                              
            display.setDomaineActivitieList(domaineValeursProxyList);   

        }
    });

避免每个演示者中出现此代码冗余的最佳方法是什么? 谢谢

我正在使用Uibinder,GIN,MVP,GWT2.4

I'have several forms that use the same Listboxes. The ListBoxes are populated from a RequestFactory call, this code, for example, is called from each presenter in order to populate a ListBox.

EntityBaseRequestContext context =  entityContextProvider.get();
    context.getDomaineValeursByName("DomaineActivite").fire(new Receiver<List<DomaineValeursProxy>>() {
        @Override
        public void onSuccess(List<DomaineValeursProxy> domaineValeursProxyList) {                              
            display.setDomaineActivitieList(domaineValeursProxyList);   

        }
    });

What's the best way to avoid redundancy of this code in each presenter ?
Thank you

I'am using Uibinder,GIN,MVP,GWT2.4

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

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

发布评论

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

评论(1

金橙橙 2025-01-03 04:12:45

在接收器回调中返回的代理不附加到任何上下文,您可以安全地将它们保存在可访问的位置并在所有列表框中使用它,就像使用简单 bean 的方式一样。在应用程序启动时仅触发一次此请求并始终使用它,在调用后忘记该上下文。

Proxies returned back in the Receiver callback are not attached to any context, you may safely keep them in a accessible location and use it in all of your listboxes, just like the way you would work with simple beans. Fire this request just once at the start of your application and use it through out, forget that context after the call.

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