Struts2中如何访问请求参数?

发布于 2024-07-29 19:18:16 字数 214 浏览 4 评论 0原文

我正在尝试访问网页上的请求参数,并尝试将隐藏字段值设置为传递的参数。 如何使用 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 技术交流群。

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

发布评论

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

评论(2

謌踐踏愛綪 2024-08-05 19:18:16

在他的评论中添加 Zahier 的答案,以便可以“回答”问题:

<s:hidden name="myfield" value="%{#parameters['mparam']}"></s:hidden>

Adding Zahieer's answer out of his comment so the question can be "answered":

<s:hidden name="myfield" value="%{#parameters['mparam']}"></s:hidden>
抠脚大汉 2024-08-05 19:18:16

如果将 String getMyParam(),setMyParam(String val) 添加到渲染表单的操作中,则可以使用

<s:hidden name="myfield" value="${myParam}" />

If you add a String getMyParam(),setMyParam(String val) to the action rendering the form then you can use

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