在jointJS中,我希望每个元素检查传入连接链接的数量。所以这是我根据文档制作的代码,但它不起作用:
_.each(this.graph.getElements(), function(element) {
var inboundLinksCount = this.graph.getConnectedLinks(element, {inbound: true}).length;
alert(inboundLinksCount);
}
这是getConnectedLinks
jointJS中的文档:http:
//resources.jointjs.com/docs/jointjs/v1.0/joint.html#dia.Graph.prototype.getConnectedLinks
请问有什么想法吗?