如何将数据库数据转换成自定义的数据结构
发布于 10 个月前 作者 ldd911127 430 次浏览 来自 问答

var tree = [ { text: “Parent 1”, nodes: [ { text: “Child 1”, nodes: [ { text: “GrandchildGrandchildGrandchild 1” }, { text: “Grandchild 2” } ] }, { text: “Child 2” } ], tags: [11] }, { text: “Parent 2” }, { text: “Parent 3” }, { text: “Parent 4” }, { text: “Parent 5” } ]; //这是我需要的数据结构 var dictIndexSchema = new mongoose.Schema({ dictcode: { unique: true, type: String }, dictname: String, issysdict: String, dicttypename: String, status: String });//这是数据库的数据结构, 我怎么转换成我要的数据结构呢 dicttypename 是第一级 对js语法不是很熟,没有头绪,谢谢各位指点一二

1 回复
回到顶部