struts 2 result的type值解釋

lzq0107發表於2020-04-07

chain      
    用來處理Action鏈,被跳轉的action中仍能獲取上個頁面的值,如request資訊。      
    com.opensymphony.xwork2.ActionChainResult      
dispatcher      
    用來轉向頁面,通常處理JSP      
    org.apache.struts2.dispatcher.ServletDispatcherResult      
freemaker      
    處理FreeMarker模板      
    org.apache.struts2.views.freemarker.FreemarkerResult      
httpheader      
    控制特殊HTTP行為的結果型別      
    org.apache.struts2.dispatcher.HttpHeaderResult   
stream      
    向瀏覽器傳送InputSream物件,通常用來處理檔案下載,還可用於返回AJAX資料      
    org.apache.struts2.dispatcher.StreamResult      
velocity      
    處理Velocity模板      
    org.apache.struts2.dispatcher.VelocityResult      
xslt      
    處理XML/XLST模板      
    org.apache.struts2.views.xslt.XSLTResult      
plainText      
    顯示原始檔案內容,例如檔案原始碼      
    org.apache.struts2.dispatcher.PlainTextResult      
plaintext      
    顯示原始檔案內容,例如檔案原始碼      
    org.apache.struts2.dispatcher.PlainTextResult
redirect    
    重定向到一個URL ,被跳轉的頁面中丟失傳遞的資訊,如request     
    org.apache.struts2.dispatcher.ServletRedirectResult      
redirectAction      
    重定向到一個Action ,跳轉的頁面中丟失傳遞的資訊,如request        
    org.apache.struts2.dispatcher.ServletActionRedirectResult      
redirect-action      
    重定向到一個Action ,跳轉的頁面中丟失傳遞的資訊,如request        
    org.apache.struts2.dispatcher.ServletActionRedirectResult   

相關文章