JSON语法错误

时间:2016-05-18 16:18:51

标签: javascript json

我开发了一个Web应用程序,其目的是在请求时发送一​​些数据,但是当我在客户端的Json中解析它时,我确实有错误" Uncaught SyntaxError:意外的结束JSON输入"。我不明白为什么。

服务器端:

response.writeHead(200, {"Content-Type": "application/json"});
response.write(JSON.stringify({ valid: true, title: "noTitle", id: "noId" }));

客户方:

xhr.open('GET', request, true);

xhr.onreadystatechange = function()
{
    var data = JSON.parse(xhr.responseText); // ERROR HERE
}

// Sending request
xhr.send();

0 个答案:

没有答案