使链接将额外信息传递给 JSP
我想做这样的事情:
<a href="myJSPFile" onClick="request.setAttribute("special case")"> click here </a>
有什么方法可以实现这一点吗?
I want to do something like this:
<a href="myJSPFile" onClick="request.setAttribute("special case")"> click here </a>
Any way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用查询字符串。
然后阅读它
Use the querystring.
Then read it with
您可以将所有信息放入一个会话中,如果浏览器意外关闭,这样会更好。一些示例代码:
当用户点击时在第一页。
检索信息:
这意味着您可以拥有更清晰的 URL,因为您不必在 URL 中放置查询字符串。
这是关于会话的有用链接。
You could put all information in a session which then would be better if the browser closes unexpectedly. Some sample code:
In the first page when the user clicks.
To retrieve the information:
This would then mean you can have a cleaner URL as you don't have to place query strings in the URL.
Here is a useful link on sessions.