今天遇到个问题 用chain跳转的时候
老是提示 找不到这个action, 明明名字是对啊 参数也传过去了 可是就是出错
错误例子
<result name="success" type="chain">toGetHanTasks?pageIndex=${pageIndex}</result> 会提示你找不到这个action
研究半天 才发现 必须按照标准来做。。。。。
<result name="success" type="chain">
<param name="actionName">toGetHanTasks</param> ==》 指定action名字
<param name="namespace">/</param> ==》命名空间
<param name="pageIndex">${pageIndex}</param> ==》你要带的参数
</result>
浪费了我好多时间啊。。。。。
Drag and drop file or link here to translate the document or web page.
Drag and drop link here to translate the web page.
We do not support the type of file you drop. Please try other file types.
We do not support the type of link you drop. Please try link of other types.