daliy_knowledge icon indicating copy to clipboard operation
daliy_knowledge copied to clipboard

jsplumb/browder-ui 删除所有连线的方法

Open klren0312 opened this issue 2 years ago • 0 comments

const jsplumbInst = jsplumb.newInstance({container: '...'})
// ...
const arr = jsplumbInst.connections
if (arr.length > 0) {
  for (let i = arr.length - 1; i >= 0; i--) {
    jsplumbInst.deleteConnection(arr[0], { force: true })
  }
}
//...

klren0312 avatar Mar 12 '24 08:03 klren0312