servlet 中的 request.getAttribute

发布于 2024-11-03 03:40:59 字数 217 浏览 0 评论 0原文

有超链接products?categoryId=1

我在servlet doGet() 方法中

我似乎无法在浏览器中获取categoryId 的值。 我必须使用表单提交吗?我想使用超链接 我不能像在 asp.net 中那样做吗

Response.redirect(products?categoryId=1);

I have the hyperlink products?categoryId=1

in the servlet doGet() method

I cant seem to get the value of the categoryId in the browser.
Do i have to use a form submission? I want to use a hyperlink
cant i do it like in asp.net

Response.redirect(products?categoryId=1);

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

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

发布评论

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

评论(1

心头的小情儿 2024-11-10 03:40:59

您应该使用 request.getParameter(String) 代替。

You should use request.getParameter(String) instead.

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