'没有为操作和结果输入定义结果'消息。如何克服它?
答案 0 :(得分:2)
确保有result
用于" input
"在验证失败时写在struts.xml
中:
<result name="input">/YourPage.jsp</result>
如果您没有这个,那么您将收到"No result defined for action xxx.xxx.YourAction and result input"
错误。
还要检查HTML字段元素与Action类字段的映射。