请教struts2配置文件中为action传递参数的问题
我在struts2的配置文件中进行了如下设置:
<action name="planList" class="com.javaedu.action.PlanAction" method="list">
<result name="list">/front/plan_list.jsp</result>
</action>
<action name="planAction" class="com.javaedu.action.PlanAction">
<result name="addPage" type="chain">planList?page=${page}</result>
<result name="plusPage" type="chain">planList?page=${page}</result>
</action>
执行时提示
There is no Action mapped for namespace / and action name planList?page=2
怎么回事呢,难道不能给action传递参数?
------解决方案--------------------
<result name="list">
name是sucess或者是err或者是input不是用来传值的,使用来判断action执行完之后所要跳转到得页面;
如果想传值的话是 param