无法从 Yii 中的响应 ajaxLink 获取 json


Cant get json from response ajaxLink in Yii

我有一个ajaxLink向控制器发送请求,我在其中返回编码的json字符串:

return CJSON::encode(array(
            'up' => ...,
            'down' => ...,
        ));

在视图中,ajaxLink 属性:

'dataType' => 'json',
'success'  => 'js: function(data) {
     console.log(data); // equal to null
 }'

我做错了什么?

试试这个:

header('Content-type: application/json');
echo CJSON::encode(array(
            'up' => ...,
            'down' => ...,
        ));