1. 程式人生 > >struts2(action重定向跳轉到另一個action)

struts2(action重定向跳轉到另一個action)

<action name="student" class="com.action.StudentAction">
           <result name="MyHome">/MyHome.jsp</result>
           <result name="delPostSuccess" type="redirect">
                 <param name="location">/student.action?pageNo=${nowPage}</param>
           </result
>
</action> //其中/student.action?pageNo=${nowPage}返回的result為"MyHome",即當前頁面跳轉到MyHome.jsp頁面。 //重要的是type="redirect"和<param name="location"> //type="redirect"表示不會儲存上一個action的請求資訊 //<param name="location">表示瀏覽器的位址列內容