在 Fancytree jquery 插件上,当没有数据出现时发生的事件是什么?

On Fancytree jquery plugin what is the event that occur when no data presented?

我用的是fancytree插件。

有时我从服务器得到空数据(因为这是用户输入的结果)。但是我想知道没有数据。

没有数据时是什么事件?

您可以使用 loadChildren 事件,该事件在加载初始节点时(以及在展开和加载惰性节点之后)触发。 data.node.children 包含结果。 loadError 是您可能想知道的另一个事件:

$("#tree").fancytree({
  loadChildren: function(event, data) {
    console.log(event.type, data.node.children.length);
  },
  loadError: function(event, data) {
    console.log(event.type, data);
  },