**Struts2 之 Result**
--------------------------------------------------------------------------------
Result的种类及使用:
<package name="resultTypes" namespace="/r" extends="struts-default">
<action name="r1">
<result type="dispatcher">/r1.jsp</result>//默认选项,为服务器端跳转,只能跳到html,jsp页面,不能跳到action
</action>
<action name="r2">
<result type="redirect">/r2.jsp</result>//客户端跳转,只能跳到视图,不能action
</action>
<action name="r3">
<result type="chain">r1</result>//访问action,注意前面最好不要加/,属于服务器端跳转
</action>
<action name="r4">
<result type="redirectAction">r2</result>//客户端直接跳转到action
</action>
</package>
前两个最常用!!
本文详细介绍了Struts2框架中Result组件的使用方法,包括四种类型:默认的服务器端跳转、客户端跳转、访问action和客户端直接跳转到action,并提供了实例代码进行演示。
245

被折叠的 条评论
为什么被折叠?



