帮助 struts2 表单和 组合框
我的表单中有一个组合框,当我单击“提交”时,出现此错误。
HTTP 错误:404 没有为操作 MyAction 定义结果,并且操作中的结果输入
我尝试返回 INPUT 而不是 SUCCESS,但仍然不起作用。
有什么想法可能是错的吗?
谢谢。
i have a combobox in a form and when i click submit i get this error.
HTTP ERROR: 404 No result defined for action MyAction and result input
in the action i tried to return INPUT instead of SUCCESS but still doesnt work.
any ideas what can be wrong?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能有一个或多个验证规则失败。 这会导致调用“输入”的隐式结果
You probably have one or more validation rules failing. This causes an implicit result of "input" to be invoked
如果没有更多可用信息,我将检查您的 struts.xml 并确保您的操作定义具有输入结果,并且它将用户引导回编辑页面,他们可以在其中更正任何操作或字段错误。
Without more information available I would be checking your struts.xml and ensuring that your action definition has an input result and that it is directing the user back to the edit page where they can correct any action or field errors.