Results 2 comments of mocayo

```javascript const convert = function (obj) { const ans = {}; function helper(o, prefix) { if (!o) { return; } Object.keys(o).forEach(k => { const v = o[k]; const p =...

Thanks, your idea really helps. I save the config data, when I need to add nodes via ajax, I will generate new config data and re-render the tree.