js报错:JSON.parse: unexpected character

js报错:JSON.parse: unexpected character

由于输入的函数不是JSON格式引起的。

加入判断

或重组数据为JSON。

可解决。

也可直接用异常抓取。


$.ajax({
type: "Post",
ContentType: "application/json; charset=utf-8",
dataType: "json",

data: "{}",
url:"Default.aspx/ABC",
success: function (data) {
alert("come in");
alert(data);
},

有时是少上面的蓝色代码引起的。

你可能感兴趣的:(js报错:JSON.parse: unexpected character)