gpt4 book ai didi

javascript - 如何从 javascript 访问 JSON 对象内的嵌套数组

转载 作者:行者123 更新时间:2023-12-03 02:15:40 24 4
gpt4 key购买 nike

我正在使用一个 json 对象,该对象具有嵌套数组以及带有空格的名称,例如帐户 ID。我需要在 Vue.js 应用程序中仅显示 Account ID。我能够获取整个 response.data json 对象,但不太确定如何在嵌套时仅获取 Account ID ,如下例所示。

JSON

"response": {
"result": {
"Accounts": {
"row": [
{
"no": "1",
"FL": [
{
"val": "ACCOUNT ID",
"content": "123456789"
},
...

Vue.js

<script>
import axios from "axios";
export default {
name: 'HelloWorld',
data () {
return {
accounts: [],
accountIDs: []
}
},
mounted() {
var self = this;
axios.get('https://MYAPIGETREQUEST')
.then( function(res){
self.accounts = res.data;
self.accountIDs = //This is where I want to get the Account ID
console.log('Data: ', res.data);
})
.catch( function(error){
console.log('Error: ', error);
})
}
}
</script>

最佳答案

尝试这样的事情

if(res.data.response.result.Accounts.row[0].FL[0].val === 'ACCOUNT ID') {

self.accountIDs = res.data.response.result.Accounts.row[0].FL[0].content;

...
}

关于javascript - 如何从 javascript 访问 JSON 对象内的嵌套数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49374781/

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