无法访问 Struts 2 操作中的表单字段

发布于 2024-08-18 00:19:33 字数 309 浏览 2 评论 0原文

我在 Struts 2 表单中有一个输入,如下所示:

<s:form action="Action">
  <input type="text" value="v01" name="name01"/>
</s:form>

问题是当我尝试 getParameter("name01") 时,我得到 null

如何在我的操作中访问此参数?我实现了 ServletRequestAware 和 ServletResponseAware。

I have an input in Struts 2 form like this:

<s:form action="Action">
  <input type="text" value="v01" name="name01"/>
</s:form>

The problem is when I tried to getParameter("name01") I get null.

How can I access this parameter in my action? I implemented both ServletRequestAware and ServletResponseAware.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

晚雾 2024-08-25 00:19:33

您需要在 Action 类中为表单输入添加 getter/setter。

You need to add getters/setters in your Action class for the form inputs.

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