如何验证 Struts (Java) 中的 ActionForm 是否已更改?
在 Struts 中,哪一个是验证 ActionForm 是否已更改(用户更改了 jsp 上输入中的一个或多个值)的最佳选项?
ActionForm 有很多实例变量,包括列表。
which is the best option to validate if an ActionForm has changed (the user changed one or more values in it inputs on the jsp) in Struts?
the ActionForm has a lot of instance variables, including lists.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Struts 没有确定更改的表单验证。
您可以尝试在会话中保留以前的表单,并在以前的操作表单和当前表单之间进行比较。
Struts doesn't have a form validation that determines changes.
You can try and keep a previous form in a session and do a comparison between the previous action form and the current form.