我正在向网址发送此ajax请求,但服务器正在发送响应Unrecognized token 'naejzraieale': was expecting 'null', 'true', 'false' or NaN
at [Source: org.eclipse.jetty.server.HttpInput@13367e3; line: 1, column: 25]
。
我的Ajax请求看起来像这样
$.ajax({url: "https://jsonparser.mydomain.com",
contentType: 'application/json',
type: "POST",
data :{name : "juzer ali",
email : "email@gmail.com",
how : "Used jQuery.ajax from google chromes developer console",
urls : ["https://chrome.google.com/webstore/search/", "https://chrome.google.com/webstore/detail/",
"https://github.com", "https://docs.google.com/document/d/edit?pli=1", "pro.appspot.com"]}
});
编辑:请注意Unrecognized token 'naejzraieale':
。此错误字符串中的j
和r
来自我传入数据的对象的name属性。当我把这些字母大写时,我得到(Unrecognized token 'naeJZRAIeale': was expecting 'null', 'true',)
答案 0 :(得分:19)
在将数据发送到服务器之前,您需要以JSON格式对其进行编码 JSON.stringify和JSON.parse由最新的浏览器提供,但如果任何浏览器不支持,那么您可以使用jquery插件执行相同的http://code.google.com/p/jquery-json/,如果您使用此插件,则语法将不同一点点
$.ajax({
url: "https://jsonparser.mydomain.com",
type: 'POST',
contentType:'application/json',
data: JSON.stringify({name : "juzer ali",
email : "email@gmail.com",
how : "Used jQuery.ajax from google chromes developer console",
urls : ["https://chrome.google.com/webstore/search/", "https://chrome.google.com/webstore/detail/",
"https://github.com/", "https://docs.google.com/document/d/edit?pli=1", "pro.appspot.com"]}),
dataType:'json'
});