我开发了一个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();