jSP表单查询参数
在 jsp 页面上使用 HTML 表单时,提交时会自动获取数据/值并生成 url: nextPage.do?param1=value1¶m2=value2
有没有办法更改生成的 url 而无需再次重定向: nextPage.do?q={param1=value1$param2=value2}。
谢谢。
While using an HTML form on a jsp page, the data/values automatically get picked up on submit and a url gets generated: nextPage.do?param1=value1¶m2=value2
Is there a way to change the generated url without redirecting again: nextPage.do?q={param1=value1$param2=value2}.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JavaScript 处理表单提交、提取参数并转换它们。但要小心特殊字符:如果某个参数值里面有美元符号怎么办?我想知道你为什么要这么做。
Use JavaScript to handle the form submission, extract the parameters, and transform them. But be careful about special characters : what if some parameter value has a dollar sign inside? I wonder why you want to do that.