易树这个简单的Node.js模块提供了一种操作树数据结构的简单方法。用法需要模块并创建一个Tree对象:var Tree = require('easy-tree');
创建一个空树: var tree = new Tree();
创建一个包含任意数据对象的树: var tree = new Tree({a: 1, b: 2});
创建一个从数组中生成的树, 包含多个子节点: var tree = new Tree([{a: 1}, {b: 2}]);
创建一个多层级的树。
easy tree: 用于操作树数据结构的简单Node.js库
文件列表
easy-tree-master.zip
(预估有个39文件)
easy-tree-master
.travis.yml
56B
index.js
6KB
package.json
667B
test
data
remove-1-1.json
2KB
insert-root-end.txt
195B
remove-1-2-2.txt
173B
append-root.json
2KB
暂无评论