在jsp中添加请求参数
如何向 jsp 中的链接添加参数而不覆盖已有的参数?
例如,我现在有这个:
<a href="<c:url value='/Top.jsp?sortBy=downloads&sortOrder=desc'/>">
但是如果他们已经有一个搜索词(或其他),我不想在排序时丢失其他参数。我该怎么办?我必须使用 <% request.getUrl %>或者类似的东西?
How can I add parameters to a link in a jsp without overwriting what is already there?
For example I have this now:
<a href="<c:url value='/Top.jsp?sortBy=downloads&sortOrder=desc'/>">
But if they have a search term in there (or whatever) already I don't want to lose the other parameters when I sort. How do I go about that? Do I have to use <% request.getUrl %> or something like that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
HttpServletRequest#getQueryString ()
。Use
HttpServletRequest#getQueryString()
.您可以在 jstl 中使用查询字符串参数数组(必须手动确定所有参数,如果参数不是那么多也可以:)
在使用 ${pageContext.request.queryString} 的情况下,您可能会在查询字符串中得到重复的参数
You may use array of query string params(must determinate all params manually, its OK if params not so much :) in jstl
In the case of using ${pageContext.request.queryString}, you may get duplicate params in query string