最佳实践,以不同形式重用 RequestFactory 调用
我有几个使用相同列表框的表单。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在接收器回调中返回的代理不附加到任何上下文,您可以安全地将它们保存在可访问的位置并在所有列表框中使用它,就像使用简单 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.