如何在 href url 中附加列表?
我想在 url 中附加一个作为 href 的列表,如何执行此操作以及如何使用 request.getParameter()
读取它?或者 url 中的完整 bean 对象?
I want to append a list in the url that is a href ,how can do so and how can i read it using request.getParameter()
? or a complete bean object in the url ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对每个项目使用相同的名称,构建类似
http://example.com/somepath?amt=1&amt=2&amt=3
的内容。然后您可以使用
HttpServletRequest.getParameterMap()
。或者,您也可以使用HttpServletRequest.getParameterValues(name)
。您可能希望通过指定名称来使用后者,例如,顺便说一下,getParameterMap() 将为您提供一个以参数名称作为键的 Map 对象。它将包含所有其他请求参数以及您的“amt”。
Use the same name for every item, build something like this,
http://example.com/somepath?amt=1&amt=2&amt=3
.And then you can use
HttpServletRequest.getParameterMap()
. Or alternatively, you can useHttpServletRequest.getParameterValues(name)
. You might like to use the latter by specifying the name, for example,By the way,
getParameterMap()
will give you a Map object having parameter names as key. It will have all other request parameters as well as your 'amt'.