标签: javascript arrays json vue.js nativescript
在图像上,您可以看到我想要阅读的内容
ElementRef
它给出console.log("exact val = " + json._array.loftybot.spells.name) 您可以在json的终端结构中看到
console.log("exact val = " + json._array.loftybot.spells.name)
如何获得这些价值? 我想将值从json保存到数组[TypeError: Cannot read property 'spells' of undefined] 然后在我的程序中使用所有这些值
[TypeError: Cannot read property 'spells' of undefined]
答案 0 :(得分:1)
json._array[0].loftybot.spells.name怎么样? _array上的索引为 0 ,然后进一步处理嵌套的json。请访问MDN
json._array[0].loftybot.spells.name
_array