1
在jointJS我要爲每一個元素來檢查傳入連接links.So這個號碼是我根據資料作出的代碼,但它不工作:獲取導入鏈接數量爲圖形元素在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
任何想法嗎?
Vinay它工作的很棒! –