我在元框中进行 ajax 调用并返回一些非常简单的数据。但是,它不断抛出错误:
parsererror
SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data
这是ajax调用:
uid = new Date().getTime();
appReq = jQuery.ajax({
type : 'post',
dataType : 'json',
url : 'admin-ajax.php',
data : { action : 'get_app_sidebars', post_id : currentApp, uid : uid }
});
appReq.done(function(data){
if(data.widgetNum > 0 && data.widgetName != '' && data.widgetBase != '') {
alert(data);
}
else {
// do something here
}
});
appReq.fail(function(jqXHR, textStatus, errorThrown){
alert(textStatus + '\n' + errorThrown);
});
这是php:
function get_app_sidebars(){
// get the meta for a custom post type
$meta = $this->get_app_meta($_REQUEST['post_id']);
$result['widgetNum'] = $meta['num_widgets'];
$result['widgetName'] = $meta['widget_name'];
$result['widgetBase'] = $meta['widget_base'];
$result = json_encode($result);
echo $result;
}
当我取回数据时,问题就来了:
{"widgetNum":"6","widgetName":"Custom Sidebars","widgetBase":"my-custom-sidebars"}0
好的,当我在萤火虫中看到这个时,最后的“0”在响应中。这让我发疯了,我无法弄清楚 WTF 在 JSON 发送到浏览器时是否正在处理它。如果我修剪 0 并通过 jsonlint 运行它,它就会通过。