ExternalObjectsDropped

ExternalObjectsDropped

当节点从选板拖放到图表时,我想获取关键信息(类似于group类中的memberAdded属性)。我假设它是ExternalObjectsDropped事件处理程序,但是当我检查e.subject.part时,输出未定义。我错过了什么还是做错了吗?

谢谢。

最佳答案

$(go.Diagram, . . .,
  {
    "ExternalObjectsDropped": function(e) {
      // e.subject is a go.Set of the dropped Parts
      e.subject.each(function(p) {
        if (p instanceof go.Node) console.log(p.key);
      })
    }
  })


有关更多信息,请访问:https://gojs.net/latest/intro/events.html#ExternalObjectsDropped

关于javascript - 如何获取在GoJS中添加到图中的节点的 key ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58966223/

10-09 21:29