/**
* * @param data 入口参数data,平行数组
* @param key id字段
* @param parentKey 父字段
* @param map 需要将原始属性名称转换为什么名称 {"text":"title","id":"id0"};
*/export default function (data, key, parentKey, map) {
this.data = data;
this.key = key;
this.parentKey = parentKey;
this.treeParentKey = parentKey; //parentKey要转换成什么属性名称
this.treeKey = key; //key要转换成什么属性名称
this.map = map;
if (map) {
if (map[key]) this.treeKey = map[key];
}
/**
* 转成tree
* @returns {Array}
*/ this.toTree = function () {
let data = this.data;
let pos = {};
let tree = [];
let i = 0;
while (data.length !== 0) {
if (data[i][this.parentKey] === 0) {
let _temp = this.copy(data[i]);
tree.push(_temp);
pos[data[i][this.key]] = [tree.length - 1];
data.splice(i, 1);
i--;
} else {
let posArr = pos[data[i][this.parentKey]];
if (posArr !== undefined) {
let obj = tree[posArr[0]];
for (let j = 1; j < posArr.length; j++) {
obj = obj.children[posArr[j]];
}
let _temp = this.copy(data[i]);
obj.children.push(_temp);
pos[data[i][this.key]] = posArr.concat([obj.children.length - 1]);
data.splice(i, 1);
i--;
}
} i++;
if (i > data.length - 1) {
i = 0;
}
} return tree;
};
/**
* 拷贝
* @param item
* @returns {{children: Array}}
*/ this.copy = function (item) {
let _temp = {
children: []
};
_temp[this.treeKey] = item[this.key];
for (let _index in item) {
if (_index !== this.key && _index !== this.parentKey) {
let _property = item[_index];
if ((!!this.map) && this.map[_index])
_temp[this.map[_index]] = _property;
else
_temp[_index] = _property;
}
} return _temp;
}
}
-
JavaScript
729 引用 • 1327 回帖
JavaScript 一种动态类型、弱类型、基于原型的直译式脚本语言,内置支持类型。它的解释器被称为 JavaScript 引擎,为浏览器的一部分,广泛用于客户端的脚本语言,最早是在 HTML 网页上使用,用来给 HTML 网页增加动态功能。
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于