从json读取嵌套的值

时间:2019-03-10 01:19:02

标签: javascript arrays json vue.js nativescript

在图像上,您可以看到我想要阅读的内容

ElementRef

它给出console.log("exact val = " + json._array.loftybot.spells.name) 您可以在json的终端结构中看到

如何获得这些价值? 我想将值从json保存到数组[TypeError: Cannot read property 'spells' of undefined] 然后在我的程序中使用所有这些值

enter image description here

1 个答案:

答案 0 :(得分:1)

json._array[0].loftybot.spells.name怎么样? _array上的索引为 0 ,然后进一步处理嵌套的json。请访问MDN