使用 RequestFactory (GWT) 删除实体列表

发布于 2024-12-10 14:42:33 字数 263 浏览 3 评论 0原文

如何使用 RequestFactory 删除实体列表?

InstanceRequest<List<XProxy>, Void> remove();

当然,这是行不通的,因为第一个参数必须是这样的: P extends BaseProxy;但有类似的方法吗?


我想从数据库中删除 CellTable 的选定实体。我正在使用 MultiSelectionModel 和 CheckboxCell。

How can I delete a list of entity with RequestFactory?

InstanceRequest<List<XProxy>, Void> remove();

Of course, this is not working, because the first parameter has to be like this: P extends BaseProxy; but is there a similar way?


I want to delete the selected entities of my CellTable from the database. And I am using MultiSelectionModel, and CheckboxCell.

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

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

发布评论

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

评论(1

久隐师 2024-12-17 14:42:33

InstanceRequest 意味着该方法是第一个类型参数的域方法上的实例方法(类似于在 List 上查找 remove()代码> 在你尝试过的内容中)。

您必须使用 Request 并将 List 作为参数传递给该方法。 RequestContext 上存在 @ServiceLocator 将告诉 RequestFactory 是查找静态方法还是实例方法。

Request<Void> remove(List<XProxy> list);

An InstanceRequest means that the method is an instance method on the domain method for the first type argument (similar to looking for a remove() on a List in what you tried).

You have to use a Request and pass the List as an argument to the method. The presence of a @ServiceLocator on the RequestContext will tell RequestFactory whether to look for a static or an instance method.

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