使用:
console.log("First Item Author: "+myjson.value.items.0.author);
我收到以下错误:
Object Uncaught SyntaxError: Unexpected number
尝试访问以下对象:
答案 0 :(得分:4)
0
不是有效的标识符,不能用作直接属性名称。
而是使用数组表示法:
items[0].author
答案 1 :(得分:1)
0
不是有效的identifier name。使用bracket notation代替dot notation:
console.log("First Item Author: " + myjson.value.items[0].author);