删除服务器响应中的尾随0以使用JSON

时间:2015-01-10 21:30:33

标签: jquery ajax json

我有以下PHP代码尝试发回JSON响应:

$response = array(
        "result"        => true,
        "text"          => "Here is some text"
);
echo json_encode($response);

我尝试使用以下代码在jQuery中解析它:

var dataArray = jQuery.parseJSON(response);
console.log(dataArray);

当我检查控制台时,我收到错误Uncaught SyntaxError: Unexpected number。当我查看对控制台的响应中返回的内容时,结果如下:

{"result":true,"text":"Here is some text"}0

是因为系统正在添加尾随0吗?如果是这样,我该如何删除它以便我能正确读取JSON响应?

0 个答案:

没有答案