在 GWT 中重新加载 JSP 页面的内容
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 RequestBuilder< /a> 发出任意 http 请求。如果您的 jsp 文件还为您的 gwt 代码生成 html 主机页,则您将必须重构 - 您无法在不重新加载整个视图的情况下重新加载主机页。
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.
它与 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 examplehttp://localhost:8080/client/index.html#token?param1=1¶m2=2
can be changed tohttp://localhost:8080/client/index.html#token?param1=2¶m2=3
and then only the jsp will be reloaded.