我試圖畫一個流程圖。我動態創建div,併爲每個div設置了唯一的「id」屬性,並使用Jsplumb連接器連接它們。Jsplumb - 連接器
我從數據庫中獲取源和目標ID(注意動態創建的'id'屬性是數據庫的ID)並存儲在'connectors'json中。其格式是 例如:
{[從:A,於:B],[自:A,到:C],[自:B,到:C]}
angular.forEach(connectors, function (connect) {
$scope.connection(connect.from, connect.to);
})
的jsplumb代碼如下
$scope.connection = function (s, t) {
var stateMachineConnector1 = {
connector: ["Flowchart", { stub: 25, midpoint: 0.001 }],
maxConnections: -1,
paintStyle: { lineWidth: 3, stroke: "#421111" },
endpoint: "Blank",
anchor: "Continuous",
anchors: [strt, end],
overlays: [["PlainArrow", { location: 1, width: 15, length: 12 }]]
};
var firstInstance = jsPlumb.getInstance();
firstInstance.connect({ source: s.toString(), target: t.toString() }, stateMachineConnector1);
}
問題:
我現在已經是
此處連接器B到C與現有的A到C連接器重疊。
我需要的是兩個連接分離像下面
我找不到這個隨時隨地的解決方案。任何幫助?謝謝!
這並不提供答案的問題。一旦你有足夠的[聲譽](https://stackoverflow.com/help/whats-reputation),你將可以[對任何帖子發表評論](https://stackoverflow.com/help/privileges/comment);相反,[提供不需要提問者澄清的答案](https://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can- I-DO-代替)。 - [來自評論](/ review/low-quality-posts/17401098) –
@MCEmperor是的,我更新了更準確的解決方案。(也許) –
這樣更好! –