无法访问 Struts 2 操作中的表单字段
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 Action 类中为表单输入添加 getter/setter。
You need to add getters/setters in your Action class for the form inputs.