Struts2 获取文本框(动态)到操作类
我有一个 struts 页面,其中的文本框带有动态 ID,并且希望将此值放入 Action 类中。有人可以帮我解决代码吗?
I have struts page where the text boxes are with dynamic ID and wanted to get this values into Action class. Can someone please help me with the code plz.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么没有人回答这个问题?不过回答这个问题有点晚了。我们将以某种格式(如 json)附加文本框的所有数据。您的 URL 将类似于
/someclass.action?knownvariable=[{textbox1:value1},{textbox2:value2}]
并将其作为名称固定的变量传递。在 Action 类中可以访问这些数据。Why did no one answer this question? Its a bit late to answer this question though. Well append all the data of textboxes in some format like json. Your URL will look something like
/someclass.action?knownvariable=[{textbox1:value1},{textbox2:value2}]
and pass it as one variable whose name is fixed. In Action class these data can be accessed.Silpa,可能如下删除该参数并使用 getter setter 方法。希望这有帮助。
Silpa, probably remove that parameter as below and use getter setter methods. Hope this helps.