在Fancytree jquery插件中,没有数据显示时会发生什么事件?

时间:2017-10-19 13:22:41

标签: jquery fancytree

我使用的是fancytree插件。

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

什么是没有数据的事件?

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用在加载初始节点时(以及扩展和加载延迟节点之后)触发的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);
  },