【已解决】Uncaught SyntaxError: Unexpected token o in JSON at position 1

Uncaught SyntaxError: Unexpected token o in JSON at position 1


$.ajax({
     type:"POST",
     url:webbase + "/account/checkIfAuth.do",
     data:{},
     dataType:"json",
     async:false,
     success:function(res){
   
    console.log(res);
     
    var json =
jQuery.parseJSON(res); //错误
   var json = res;//直接使用
if (json.errorCode == 200) {
if(json.data!=null){
ispas= json.data;
}
}
     }
  })


返回的数据已经是object类型,不需要再进行JSON.parse()转换了,可以直接当作对象使用。



你可能感兴趣的:(ajax)