gpt4 book ai didi

javascript - D3 在 JSON 中获取 JSON 数据

转载 作者:行者123 更新时间:2023-12-03 10:17:34 25 4
gpt4 key购买 nike

使用this as reference.我正在尝试将其实现到我的页面中。但是,我正在使用的 JSON 数据中包含 JSON。 所以我的 JSON 看起来类似于:

{
"nodes": [
{"fixed":true,"classes": null,"data": {"id": "imombr","idType":"USERNAME","visible":true },"grabbable": true,"grabbed":false,"group":null,"locked": false,"position":null},
{"fixed":true,"classes": null,"data": {"id": "stephieru_","idType":"USERNAME","visible":true },"grabbable": true,"grabbed":false,"group":null,"locked": false,"position":null}
],
"links": [
{"source":0,"target":1,"value":1},
{"source":1,"target":0,"value":1}
]
}

所以我试图获取数据中的 id 作为我的文本显示。我已经尝试了几件事,但似乎我无法到达内部以获取 ID。尝试过:

node.append("text")
.attr("dx", 12)
.attr("dy", ".35em")
.text(function(d) { return d.data[id] });

node.append("text")
.attr("dx", 12)
.attr("dy", ".35em")
.text(function(d) { return d.data[0] });

但似乎都不起作用。

最佳答案

而不是 d.data[id]使用d.data['id']或者,正如音箱建议的那样,d.data.id

关于javascript - D3 在 JSON 中获取 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29801562/

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