今天做项目,我遇到了一个精彩的问题。
我需要在struts的xml中的<action>的<result>中配置type="redirect"。同一时候须要传參进去。试了老半天。我的别的參数都好着,就flag參数不好,纠结死了都快。后来,突然想想。改一下,说不定是什么keyword之类的,就把flag改成了showflag了。居然奇迹般的好了!
!
!
特此记录。有类似问题的大家还是不要直接写flag比較好。
<result name="success" type="redirect">test.action?id=${id}&showflag=${showflag}</result>
<result name="error">/error.jsp</result>