gpt4 book ai didi

javascript vue 获取 JSON 中的值

转载 作者:行者123 更新时间:2023-12-04 08:13:54 24 4
gpt4 key购买 nike

我想遍历这个 JSON 文件并输出“状态”下的值。例如Bayern - 220318. 如何在循环中访问这些值以将它们显示在列表或表格中?
enter image description here

最佳答案

如果您只想要国家/地区名称,那么您可以定义一个计算属性,如下所示...

computed: {
getStates() {
return this.output.states; // assuming that you have stored the response in a variable called 'output' defined in the data section
}
}
这就是你如何调用计算并使用 v-for 在你的模板中打印它
<div v-for="(stateObject, state) in getStates" v-bind:key="state">
<div>{{state}}</div> // to print the state name
<div>{{stateObject.total}}</div> // to print the total value of that object
<div>{{stateObject.vaccine}}</div> // to print the vaccine value of that object

</div>

关于javascript vue 获取 JSON 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65806096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com