欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS 调试中常见的报错问题解决方法

程序员文章站 2023-09-20 12:36:54
报错:uncaught syntaxerror: unexpected token o in json at position 1 at json.parse (<...

报错:uncaught syntaxerror: unexpected token o in json at position 1

at json.parse (<anonymous>)
at function.m.parsejson (jquery.js:8515)
at object.success (crud.html:45)
at j (jquery.js:3143)
at object.firewith [as resolvewith] (jquery.js:3255)
at x (jquery.js:9309)
at xmlhttprequest.b (jquery.js:9713)

(翻译:不能捕获的语法错误:json数据位置0处发现不能识别的标记<)

原因:json格式错误

返回数据 语句用echo json_encode($data,true);但是用了echo json_decode($data);
由于函数使用不对,返回的data不是json数据,第一个字符是“ <”,所以报错unexpected token < in json at position 0(翻译:json数据位置0处发现不能识别的标记<);

如果使用 $.ajax({})而不是 $.get() 区别: 当使用 $.ajax 时,php返回的 json字符串已经被 ajax 中的属性 datatype 将请求的参数类型要求为string类型(datatype:'json')返回为 json对象,不需要再次转换;当使用 $.get 时,服务器返回的数据格式为原始的字符串数组,因此,需要将返回的字符串转换为数组,使用 json.parse(jsonstring) ,将json字符串解析为json对象;

json教程见:

解决办法:

修改为echo json_encode($data,true);

将php的代码调试代码 echo()去掉,就不会再报这样的错误了:

$json = json_encode(array(
      "resultcode"=>200,
      "message"=>"查询成功!",
      "data"=>$data
    ),json_unescaped_unicode);
    
    //注释掉
    /*echo($json);*/

如果使用 $.ajax 时,不需要注释

 //不需要注释
echo($json);

如果不是该问题,请检查php文件给返回的data数据,是否标准json格式。如果php文件中有var_dump、echo、注释等,都会对返回的json数据有影响。

以上这篇js 调试中常见的报错问题解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。