Unexpected token c in JSON at position 0 报错信息及解决
程序员文章站
2022-05-30 18:24:15
...
问题产生:mpvue编译过程报错 Unexpected token c in JSON at position 0,且是websocket返回实时数据时。
问题产生原因:js中json 解析失败
解决:添加判断字符串是否是json格式方法isJson,并调用一下
isJson(str) {
if (typeof str == 'string') {
try {
var obj = JSON.parse(str);
if (typeof obj == 'object' && obj) {
return true;
} else {
return false;
}
} catch (e) {
console.log('error:' + str + '!!!' + e);
return false;
}
}
},
if(_this.isJson(res.data)){
const data = JSON.parse(res.data);
let jsonObj = data.data;
。。。。。其余代码省略,多加个判断就行
}
上一篇: Android6.0指纹识别开发实例详解
下一篇: Uncaught SyntaxError: Unexpected token E in JSON at position 0 at JSON.parse ()
推荐阅读
-
vue 报错Error in mounted hook: "SyntaxError: Unexpected token u in JSON at position 0"
-
报错: Error in created hook: “SyntaxError: Unexpected token u in JSON at position 0
-
flutter报错解决 Error: FormatException: SyntaxError: Unexpected token m in JSON at position 1
-
JSON字符格式报错:VM40:1 Uncaught SyntaxError: Unexpected token E in JSON at position 0
-
SyntaxError: Unexpected token R in JSON at position 0 报错的解决方法
-
报错 SyntaxError: Unexpected token R in JSON at position 0 at JSON.parse (<anonymous>)的解决方法
-
Unexpected token c in JSON at position 0 报错信息及解决
-
解决报错:Uncaught SyntaxError: Unexpected token “xxx” in JSON at position 0
-
解决报错信息之:SyntaxError: Unexpected token R in JSON at position 0
-
JS报错解决:SyntaxError: Unexpected token 《 in JSON at position 0