首页 > 代码库 > result type struts2标签
result type struts2标签
<result type=""></result>
type属性的值共有10个:
<result-types> <result-type name="chain" class="com.opensymphony.xwork2.ActionChainResult"/> <result-type name="dispatcher" class="org.apache.struts2.dispatcher.ServletDispatcherResult" default="true"/> <result-type name="freemarker" class="org.apache.struts2.views.freemarker.FreemarkerResult"/> <result-type name="httpheader" class="org.apache.struts2.dispatcher.HttpHeaderResult"/> <result-type name="redirect" class="org.apache.struts2.dispatcher.ServletRedirectResult"/> <result-type name="redirectAction" class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/> <result-type name="stream" class="org.apache.struts2.dispatcher.StreamResult"/> <result-type name="velocity" class="org.apache.struts2.dispatcher.VelocityResult"/> <result-type name="xslt" class="org.apache.struts2.views.xslt.XSLTResult"/> <result-type name="plainText" class="org.apache.struts2.dispatcher.PlainTextResult" /> </result-types>
chain:转发到一个action,注意不是页面;
dispatcher:转发到另一个页面,不是action,与forward类似,用户浏览器地址不变,type属性的默认值
freemarker:
httpheader:
redirect:重定向,与HttpServletResponse的sendRedirect方法一样,让浏览器重新请求新的地址(据说这个不能重定向到Action,若需要重定向到action,用redirectAction)
redirectAction:与redirect类似,只不过是重定向到action
stream:直接输出二进制数据
velocity:
xslt:
plainText:
上面没有解释的类型为不常用类型,不再赘述,读者若需要,百度即可;
下面说一下另一个特殊的类型-json
json是一种数据格式,越来越流行,Struts2里result的type默认值并没有json,我们如果使用,可以把result所在的package继承json-defaul的package
eg:
<result type="json"></result>
result type struts2标签
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。