我想知道如何删除 draw2d 中的连接。我尝试了 disconnect() 方法,但似乎不起作用。这是我的代码
menu.appendMenuItem(new draw2d.MenuItem("Disconnect", null, function() {
//draw2d.Connection.workflow.removeFigure(draw2d.Connection.prototype);
var cmd = new draw2d.CommandDelete(oThis);
oThis.workflow.getCommandStack().excute(cmd);
}));
这里 o这是“draw2d.Connection”类型。请帮忙。