gpt4 book ai didi

javascript - 使用 javascript/coffee 和 d3.json 扁平化 json 文件

转载 作者:行者123 更新时间:2023-11-28 01:32:06 25 4
gpt4 key购买 nike

我正在尝试展平并组合 json 中的值,这是 json

https://api.github.com/repos/wesm/D3py/commits

我已经使用下面的咖啡代码成功地按每个位置提取了

d3.json "https://api.github.com/repos/wesm/D3py/commits", (data) -> 
console.log data[0].commit.author.name
return

但是当我尝试执行如下所示的操作时,我希望看到名称数组,但什么也没得到,

 d3.json "https://api.github.com/repos/wesm/D3py/commits", (data) -> 
names = (name for name in data.commit.author.name)
console.log names
return

最佳答案

names = (entry.commit.author.name for entry in data)

关于javascript - 使用 javascript/coffee 和 d3.json 扁平化 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22004357/

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