我正在使用d3.js ad force layout工作,但我有这个问题: TypeError:c.target是未定义的,我知道这是什么,以及如何删除但我不想
d3.json("myfile.json", function(graph) {
var nodeMap = {};
graph.nodes.forEach(function(d) { nodeMap[d.name] = d; });
graph.links = graph.links.map(function(d) {
return {
source: nodeMap[d.source] ,
target: nodeMap[d.target] ,
value: d.value
};
});
force
.nodes(graph.nodes)
.links(graph.links)
.on("tick", tick)
.start();
这是我加载json数据并构建图表的代码。
if i put ( || 0 )in :
source: nodeMap[d.source] || 0,
target: nodeMap[d.target] ||0,
这会破坏代码,不会为“d”节点绘制链接。 相反,我想要“继续语句”之类的东西,跳转到相同“d”节点的下一个c.target。
有人可以帮助我
答案 0 :(得分:0)
您可以过滤掉引用不存在的节点的链接:
graph.links = graph.links.filter(function(d) {
return nodeMap[d.source] && nodeMap[d.target];
}).map(function(d) {
return {
source: nodeMap[d.source] ,
target: nodeMap[d.target]
};
});