Struts2中如何访问请求参数?
我正在尝试访问网页上的请求参数,并尝试将隐藏字段值设置为传递的参数。 如何使用 struts2 标签实现这一点?
就像...
<s:hidden name="myfield" value="#parameters['myparam']"/>
我尝试使用参数对象,但它不起作用!
提前致谢。
I am trying to access request parameters on a web page and trying to set a hidden fields value to the passed parameter. How can I achieve this using struts2 tags?
Something like...
<s:hidden name="myfield" value="#parameters['myparam']"/>
I have tries using the parameters object but it does not work!
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在他的评论中添加 Zahier 的答案,以便可以“回答”问题:
Adding Zahieer's answer out of his comment so the question can be "answered":
如果将 String getMyParam(),setMyParam(String val) 添加到渲染表单的操作中,则可以使用
If you add a String getMyParam(),setMyParam(String val) to the action rendering the form then you can use