servlet 中的 request.getAttribute
有超链接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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 request.getParameter(String) 代替。
You should use request.getParameter(String) instead.