Mongoose 单级查询
如何使用 mongoose 进行单级查询。
示例集合:
ID | NAME | PARENT ID |
---|---|---|
1 | Alex | 0 |
2 | Michael | 1 |
3 | George | 2 |
4 | Yuri | 1 |
示例输出:
[{ id:1, name:Alex, parentId:0},{ id:2, Michael, parentId:1},{ id:3, name:George, parentId:2},{ id:4, name:Yuri, parentId:1}]
感谢您的帮助。
How can I do unilevel query with mongoose.
Example collection :
ID | NAME | PARENT ID |
---|---|---|
1 | Alex | 0 |
2 | Michael | 1 |
3 | George | 2 |
4 | Yuri | 1 |
Example output :
[{ id:1, name:Alex, parentId:0},{ id:2, Michael, parentId:1},{ id:3, name:George, parentId:2},{ id:4, name:Yuri, parentId:1}]
Thanks for helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我并不完全理解这个挑战,但我认为这可能会有所帮助,或者也许只是一个开始。输出有点“原始”,但可以将更多阶段添加到管道中以对其进行自定义。
输出示例:
在 mongoplayground.net 上尝试一下。
I don't completely understand the challenge, but I thought this might help, or maybe just a start. The output is a bit "raw", but more stages could be added to the pipeline to customize it.
Example output:
Try it on mongoplayground.net.