我正在尝试从票证主机 API 控制台记录一个数组,但似乎只能从该数组记录 1 个项目

i am trying to console log an array from the ticket master API but can only seem to log 1 item from the array

我目前正在尝试让所有事件名称填充到我的控制台日志中,但我只能显示一个。我明白为什么我只显示 1 个结果(因为我在数组中选择了对象 0),但我不确定如何让它们全部显示

代码如下 console.log("event:" + response._embedded.events[0].name);

pic of array

你可以这样做:

console.table(response._embedded.events, ["name"])

也许是这个?

console.log("events: " + response._embedded.events.map(e => e.name));