如何将 "children:" 替换为另一个关键字(例如 "descdendants:")

How to replace "children:" with another keyword (e.g. "descdendants:")

我有一个数据集,其层次结构对应于 fancytree 的 json 结构,除了 "children:" 表示为 "descendants:"。我似乎记得有一个选项告诉 fancytree 在数据集中为 "children" 使用另一个关键字,但找不到它。有人可以帮我吗?

转换输入数据的推荐方法是实现postProcess回调

postProcess: function(event, data) {
  var orgResponse = data.response;

  orgResponse.descendants = orgResponse.children;
  delete orgResponse.children;
}

(see also the docs):