我有一些 div 元素,每个元素有 2 个端点(一个在左侧,一个在右侧)。现在我想删除每个右侧端点。每个端点都有自己独特的 uuid。我得到了右侧端点的每个 uuid 的数组-> 遍历它们并删除它们中的每一个,但这不起作用
谁能给我一个通过 uuid 或对象删除端点的工作示例?就我而言,两者都不起作用。我每次都收到此错误消息:
TypeError: o is undefined jquery.jsPlumb-1.4.1-all.js Line 681
$(elementArray).each(function(){
//the uuid
var currentUuid = 'rightEndpoint_'+this;
//the endpoint object -> that acutually works
var getCurrentEndpoint = jsPlumb.getEndpoint(currentUuid);
//delete the endpoint -> here I got the error message
jsPlumb.deleteEndpoint(currentUuid);
});
提前致谢!