最簡單的方式是使用上下文切換。在你的控制器,安裝在AjaxContext助手爲您的操作與「JSON」上下文
class EntryController extends Zend_Controller_Action
{
public function init()
{
$this->_helper->ajaxContext->addActionContext('get-member-course', 'json')
->initContext();
}
public function getMemberCourseAction()
{
$id = $this->_getParam('id');
$this->view->test = array('test' => 'bleh');
}
}
用於調用腳本視圖應包含對JSON URL的參考。例如,假設您的JSON代碼通過單擊鏈接而解僱了,像這樣創建
<a id="get-json" href="<?php echo $this->url(array(
'action' => 'get-member-course',
'controller' => 'entry',
'id' => $someId
), null, true) ?>">Click me for JSON goodness</a>
你的客戶端代碼的鏈接將有這樣的事情
$('#get-json').click(function() {
var url = this.href;
$.getJSON(url, {
"format": "json" // this is required to trigger the JSON context
}, function(data, textStatus, jqXHR) {
// handle response here
});
});
默認情況下,JSON上下文被觸發,任何視圖屬性被序列化爲JSON並在響應中返回。如果您的視圖屬性不能簡單地轉換,你需要禁用自動JSON序列...
$this->_helper->ajaxContext->addActionContext('my-action', 'json')
->setAutoJsonSerialization(false)
->initContext();
,並提供一個JSON視圖腳本
// controllers/my/my-action.json.phtml
$simplifiedArray = array(
'prop' => $this->someViewProperty->getSomeValue()
);
echo Zend_Json::encode($simplifiedArray);
看到我更新的答案。另外,顯示您的客戶端腳本 – Phil