struts2的action中的actionerror输出的问题
<actionname="hello"class="com.hello"method="addColumn"><interceptor-refname="defaultS...
<action name="hello" class="com.hello"
method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input" type="chain">hello1</result>
<result name="success" type="chain">hello1</result>
</action>
<action name="hello1">
<interceptor-ref name="defaultStack" />
<result name="input">/MyJsp.jsp</result>
<result name="success">/MyJsp.jsp</result>
</action>
<action name="hello2" class="com.hello"
method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input" >/MyJsp.jsp</result>
<result name="success" >/MyJsp.jsp</result>
</action>
在上面的那个配置中,访问hello2.action能够打印出<s:actionerror /><s:fielderror cssStyle="color:red" />,但是访问hello.action就是不行,求解,或者用其它方法解决这个问题也行,谢谢! 展开
method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input" type="chain">hello1</result>
<result name="success" type="chain">hello1</result>
</action>
<action name="hello1">
<interceptor-ref name="defaultStack" />
<result name="input">/MyJsp.jsp</result>
<result name="success">/MyJsp.jsp</result>
</action>
<action name="hello2" class="com.hello"
method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input" >/MyJsp.jsp</result>
<result name="success" >/MyJsp.jsp</result>
</action>
在上面的那个配置中,访问hello2.action能够打印出<s:actionerror /><s:fielderror cssStyle="color:red" />,但是访问hello.action就是不行,求解,或者用其它方法解决这个问题也行,谢谢! 展开
3个回答
展开全部
你调用hello.action但是hello.action返回时不管成功(success)或者失败(input)都是调用了hello1.action(type="chain"是struts2中action调用另外一个action用到的)。
你的hello1.action有错误,hello1没指定对应的类和方法;
你这样写就没问题了:
<action name="hello1" class="com.hello" method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input">/MyJsp.jsp</result>
<result name="success">/MyJsp.jsp</result>
</action>
你的hello1.action有错误,hello1没指定对应的类和方法;
你这样写就没问题了:
<action name="hello1" class="com.hello" method="addColumn">
<interceptor-ref name="defaultStack" />
<result name="input">/MyJsp.jsp</result>
<result name="success">/MyJsp.jsp</result>
</action>
展开全部
<action name="hello1">
<interceptor-ref name="defaultStack" />
<result>/MyJsp.jsp</result>
</action>
<interceptor-ref name="defaultStack" />
<result>/MyJsp.jsp</result>
</action>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的hello1没指定对应的类和方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询