gpt4 book ai didi

javascript - 无法读取 Node.JS 中的嵌套 JSON 对象

转载 作者:太空宇宙 更新时间:2023-11-04 02:55:24 25 4
gpt4 key购买 nike

我有一个名为“data”的 JSON Node ,它有一个 id。我想存储该 id 的值,但无法使用当前语法执行此操作,并且收到一条错误消息,指出它未定义。

我应该如何更改我的代码才能使其正常工作?

我的代码片段:

const transfer_ID = data.items.id;
console.log("This is the transfer tree obtained", data);

数据:

{ entity: 'collection',
count: 1,
items:
[ { id: 'trf_Ary1cWasdfGmHAc',
entity: 'transfer',
source: 'pay_ASrxasdfetwhAFv',
amount: 390000,
currency: 'INR',
amount_reversed: 0,
notes: [],
fees: 1151,
tax: 176,
on_hold: false,
on_hold_until: null,
recipient_settlement_id: null,
created_at: 1530208843 } ] }

最佳答案

检查以下代码片段

var data ={ entity: 'collection',
count: 1,
items:
[ { id: 'trf_Ary1cWasdfGmHAc',
entity: 'transfer',
source: 'pay_ASrxasdfetwhAFv',
amount: 390000,
currency: 'INR',
amount_reversed: 0,
notes: [],
fees: 1151,
tax: 176,
on_hold: false,
on_hold_until: null,
recipient_settlement_id: null,
created_at: 1530208843 } ] }

var id = data.items[0].id;
console.log(id);

关于javascript - 无法读取 Node.JS 中的嵌套 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51089045/

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