这是我的代码:
$.ajax({
url: "MyServlet",
dataType: "json",
data: data,
type: "post",
cache: false
}).done(function (data) {
alert('hello');
}).fail(function (XMLHttpRequest, textStatus, errorThrown) {
alert('error: ' + XMLHttpRequest.status + ": " + XMLHttpRequest.responseText + ": " + textStatus + ": " + errorThrown);
});
我收到:“错误:200:parsererror:SyntaxError:意外的输入结束”
我无法弄清楚原因。有什么帮助吗?
我的servlet基本上返回以下内容:
PrintWriter out = response.getWriter();
JSONObject json = new JSONObject();
json.put("test", "hello servlet");
out.print(json);
out.close();
答案 0 :(得分:1)
我已经弄明白了。我没有正确关闭我的servlet中的输出流,导致返回错误的json数据。