无法从 Yii 中的响应 ajaxLink 获得 json
Cant get json from response ajaxLink in Yii
我有一个向控制器发送请求的 ajaxLink,我在其中 return 编码了 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' => ...,
));
我有一个向控制器发送请求的 ajaxLink,我在其中 return 编码了 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' => ...,
));