报错 Uncaught SyntaxError: Unexpected token u in JSON at position 0 at JSON.parse
程序员文章站
2022-05-30 18:23:51
...
今天用JSON.parse解析字符串时发生了报错
const initGroupJson =
groupJson !== '' && groupJson !== undefined ? JSON.parse(groupJson) : { generate: '', rank: '' };
JSON.parse解析json数据及取值的几种方式
var jsontext = '{"firstname":"Jesper","surname":"Aaberg","phone":["555-0100","555-0120"]}';
var contact = JSON.parse(jsontext);
//第一种取值方法
with(contact)
{
alert(firstname+" "+surname+" "+phone);
}
//第二种取值方式
alert(contact['phone']);
with()
相信很多人都会有疑问,里面在with ( )中嵌套了if,这个with()是什么方法?这个with()就是和if 一起用的吗?
其实with()和if()没有关系。
with(obj)作用就是将后面的{}中的语句块中的缺省对象设置为obj,那么在其后面的{}语句块中引用obj的方法或属性时可以省略obj.的输入而直接使用方法或属性的名称
用了with(field)后,上面函数中的field.都可以省略了,减少了输入的工作量。with对象能够使我们很方便的使用某个对象的一些属性,而不用每次都去写
对象名.属性 的形式,直接使用对象名。
注意与使用eval(“(“+json+”)”)处理时对json数据格式的要求。
推荐阅读
-
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
-
JSOIN.parse()报错:Uncaught SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse (
) -
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 E in JSON at position 0 at JSON.parse ()
-
解决报错:Uncaught SyntaxError: Unexpected token “xxx” in JSON at position 0