获取所有连接不是函数
getAllConnections is not a functoin
jsPlumb2.x 在实例上设置了 getAllConnections 以获取所有已连接的 uuid。我正在使用 5.x 版本并收到此错误并且无法在源代码和文档中找到任何替代函数
ERROR TypeError: this.instance.getAllConnections is not a function
哪个功能可以替代使用?
getAllConnections
是一种用于获取实例正在管理的每个连接的方法:
// get all connections managed by the instance of jsplumb.
this.getAllConnections = function () {
return connections;
};
在 5.x 中,您可以直接在实例上访问数组:
readonly connections:Array<Connection> = []
jsPlumb2.x 在实例上设置了 getAllConnections 以获取所有已连接的 uuid。我正在使用 5.x 版本并收到此错误并且无法在源代码和文档中找到任何替代函数
ERROR TypeError: this.instance.getAllConnections is not a function
哪个功能可以替代使用?
getAllConnections
是一种用于获取实例正在管理的每个连接的方法:
// get all connections managed by the instance of jsplumb.
this.getAllConnections = function () {
return connections;
};
在 5.x 中,您可以直接在实例上访问数组:
readonly connections:Array<Connection> = []