javascript - mongoose获取树形结构
高洛峰
高洛峰 2017-05-02 09:25:52
0
1
708

结构如下

var LabelSchema = new mongoose.Schema({ name: String, parent: {type: ObjectId, ref: 'Label', default: null}, children: [{type: ObjectId, ref: 'Label'}] })

希望一次性获取完整的树形结构

Label.find({parent: null}) .populate('children') .exec(function(err, labels) { if (err) { console.log(err) } // res.send('test') res.send({ msg: true, result: labels }) })

使用了populate方法,但是只能获取第一层的childern引用,第二层的childern仍然是objectId;除了自己通过objectId查找对象,还有没有其他更简便的方法获取完整树形结构?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回复 (1)
小葫芦

找到解决方法了,在find的时候先populate

pointSchema.pre('find', function(next) { this.populate('children') next() })
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!