最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

struts2(action重定向跳转到另一个action)

旗下网站admin34浏览0评论

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">表示浏览器的地址栏内容
发布评论

评论列表(0)

  1. 暂无评论