struts2(action重定向跳轉到另一個action)
阿新 • • 發佈:2019-02-04
<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">表示瀏覽器的位址列內容