3.9 render 系列方法

2022-07-11 10:15 更新
render 系列方法將渲染不同類型的視圖并返回給客戶端。JFinal 目前支持的視圖類型有:
FreeMarker、JSP、Velocity、JSON、File、Text、Html 等等。除了 JFinal 支持的視圖型以外,還可以通過繼承 Render 抽象類來無限擴(kuò)展視圖類型。


通常情況下使用 Controller.render(String)方法來渲染視圖,使用 Controller.render(String)時(shí) 的 視 圖 類 型 由 JFinalConfig.configConstant(Constants constants)  配 置 中 的 constants. setViewType(ViewType)來決定,該設(shè)置方法支持的 ViewType 有:FreeMarker、JSP、Velocity, 不進(jìn)行配置時(shí)的缺省配置為 FreeMarker。


此外,還可以通過 constants.setMainRenderFactory(IMainRenderFactory)  來設(shè)置 Controller.render(String)所使用的視圖,IMainRenderFactory 專門用來對(duì) Controller.render(String) 方法擴(kuò)展除了 FreeMarker、JSP、Velocity 之外的視圖。

假設(shè) 在 JFinalConfig.configRoute(Routes   routes) 中有 如下 Controller   映射配置 :routes.add(“/user”, UserController.class, “/path”), render(String view)使用例子:

方法調(diào)用

描述

render(”test.html”)

渲染名為 test.html 的視圖,該視圖的全路 徑 為”/path/test.html”

render(”/other_path/test.html”)

渲染名為 test.html 的視圖,該視圖的全路 徑 為”/other_path/test.html”,即當(dāng)參數(shù)以”/”開頭時(shí)將 采用絕對(duì)路徑。

其它 render 方法使用例子:

方法調(diào)用

描述

renderFreeMarker(”test.html”)

渲染 名為 test.html  的視圖 , 且 視圖類型為 

FreeMarker。

renderJsp(”test.html”)

渲染名為 test.html 的視圖,且視圖類型為 Jsp。

renderVelocity(“test.html”)

渲染名為 test.html 的視圖,且視圖類型為 Velocity。

renderJson()

將所有通過 Controller.setAttr(String, Object)設(shè)置 的變量轉(zhuǎn)換成 json 數(shù)據(jù)并渲染。

renderJson(“users”, userList)

以”users”為根,僅將 userList 中的數(shù)據(jù)轉(zhuǎn)換成 json

數(shù)據(jù)并渲染。

renderJson(user)

將 user 對(duì)象轉(zhuǎn)換成 json 數(shù)據(jù)并渲染。

renderJson(“{\”age\”:18}” )

直接渲染 json 字符串。

renderJson(new String[]{“user”, “blog”})

僅將 setAttr(“user”, user)與 setAttr(“blog”, blog)設(shè) 置的屬性轉(zhuǎn)換成 json 并渲染。使用 setAttr 設(shè)置的 其它屬性并不轉(zhuǎn)換為 json。

renderFile(“test.zip”);

渲染名為 test.zip 的文件,一般用于文件下載

renderText(“Hello JFinal”)

渲染純文本內(nèi)容”Hello JFinal”。

renderHtml(“Hello Html”)

渲染 Html 內(nèi)容”Hello Html”。

renderError (404 , “test.html”)

渲染名為 test.html 的文件,且狀態(tài)為 404。

renderError (500 , “test.html”)

渲染名為 test.html 的文件,且狀態(tài)為 500。

renderNull()

不渲染,即不向客戶端返回?cái)?shù)據(jù)。

render(new XmlRender())

使用自定義的 XmlRender 來渲染。

注意:

1:IE 不支持 contentType 為 application/json,在 ajax 上傳文件完成后返回 json 時(shí) IE 提示下載文 件 , 解 決 辦 法 是 使 用 : render(new JsonRender().forIE()) 或 者 render(new JsonRender(params).forIE())。這種情況只出現(xiàn)在 IE 瀏覽器 ajax 文件上傳,其它普通 ajax 請(qǐng)求 不必理會(huì)。

2:除 renderError 方法以外,在調(diào)用 render 系列的方法后程序并不會(huì)立即返回,如果需要立即 返回需要使用 return 語(yǔ)句。在一個(gè) action 中多次調(diào)用 render 方法只有最后一次有效。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)