SyntaxError:JSON.parse:JSON数据第1行第16列的JSON数据后出现意外的非空白字符:在我的代码下方
function foldersDepth() {
var url = ajaxurl, action = "currentfolder";
var posting = $.post(url, {
action: action
});
posting.done(function(data) {
responseText = jQuery.parseJSON(data);
if (responseText.folder == 1) {
$(".go-back").hide();
} else {
$(".go-back").show();
}
});
}