您好,登錄后才能下訂單哦!
這篇文章主要介紹Zend Framework中Json怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
具體如下:
Json的使用較簡單,以下是文檔給出的用法:
Json 用來解碼和發(fā)送 JSON 響應(yīng);
當(dāng)處理期望數(shù)據(jù)表響應(yīng)的 AJAX 請求,JSON 響應(yīng)迅速變成選擇的響應(yīng)。
JSON 可以立即在客戶端被解析,從而快速執(zhí)行。
JSON 動作助手完成以下任務(wù):
如果布局是打開(enabled)的,則關(guān)閉(disable)它。
如果視圖解析器(ViewRenderer)是打開的,則關(guān)閉它。
設(shè)置 'Content-Type' 響應(yīng)頭為 'application/json'。
缺省地,不需要等待動作執(zhí)行完成,立即返回響應(yīng)。
用法很簡單:或者把它作為助手代理的方法來調(diào)用,或者調(diào)用 encodeJson() 和 sendJson() 方法的其中之一:
class FooController extends Zend_Controller_Action { public function barAction() { // do some processing... // Send the JSON response: $this->_helper->json($data); // or... $this->_helper->json->sendJson($data); // or retrieve the json: $json = $this->_helper->json->encodeJson($data); } }
Note: 保持布局 (Keeping Layouts)
如果你為 JSON 響應(yīng)有分離的布局 - 也許把 JSON 封裝到一些上下文 - 在 JSON 助手的每個方法接受第二個可選的參數(shù):打開或關(guān)閉布局的 flag ,傳遞一個布爾 true 值將使布局保持打開:
class FooController extends Zend_Controller_Action { public function barAction() { // Retrieve the json, keeping layouts: $json = $this->_helper->json->encodeJson($data, true); } }
以上是“Zend Framework中Json怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。