如何在 href url 中附加列表?

发布于 2024-08-19 02:07:03 字数 106 浏览 2 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

回梦 2024-08-26 02:07:03

对每个项目使用相同的名称,构建类似 http://example.com/somepath?amt=1&amt=2&amt=3 的内容。

然后您可以使用HttpServletRequest.getParameterMap()。或者,您也可以使用HttpServletRequest.getParameterValues(name)。您可能希望通过指定名称来使用后者,例如,

String[] amts = request.getParameterValues("amt");

顺便说一下,getParameterMap() 将为您提供一个以参数名称作为键的 Map 对象。它将包含所有其他请求参数以及您的“amt”。

Map map = request.getParameterMap();
String[] amts = map.get("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 use HttpServletRequest.getParameterValues(name). You might like to use the latter by specifying the name, for example,

String[] amts = request.getParameterValues("amt");

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'.

Map map = request.getParameterMap();
String[] amts = map.get("amt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文