在 GWT 中重新加载 JSP 页面的内容

发布于 2024-10-15 07:18:10 字数 158 浏览 2 评论 0原文

我有一个 jsp,它嵌入在我们的 GWT 应用程序中。 jsp 给我来自数据库的 select 语句的 32 个结果。我想传递 limit 和 offset 参数,以便每页只获取 10 个结果。然后我需要分页功能。对于分页,我需要传递另一个参数并仅刷新 jsp 而不是整个视图。可以使用什么来启用分页?

I have an jsp, which is embedded in our GWT application. The jsp give me 32 result of a select statement from the DB. I want to pass limit and offset parameters, to get only 10 results per page. Then i need paging functionality. For the paging i need to pass another parameters and to refresh only the jsp and not the entire view. What can be used to enable the paging?

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

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

发布评论

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

评论(2

何以笙箫默 2024-10-22 07:18:10

You can use RequestBuilder to make arbitrary http requests. If your jsp file is also producing the html host page for your gwt code, you will have to refactor - you cannot reload the host page without reloading the entire view.

最佳男配角 2024-10-22 07:18:10

它与 GWT History 一起使用......因为我在 # 之后操作 url 部分,例如 http://localhost:8080/client/index.html#token?param1=1& ;param2=2 可以改为 http://localhost:8080/client/index.html#token?param1=2¶m2=3 然后只重新加载jsp 。

It works with the GWT History....for that i manipulate url part after #, for example http://localhost:8080/client/index.html#token?param1=1¶m2=2 can be changed to http://localhost:8080/client/index.html#token?param1=2¶m2=3 and then only the jsp will be reloaded.

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