JSON 数据库集合collection之间的关系
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
云开发提供了一个 JSON 数据库,两个集合 collection之间的关系如何处理?
例如:
集合 collection
books
集合存放了图书记录
[
{
_id: b001
auther_id: a001
}
]
authers 集合
[
{
_id: a001,
name: Tom
}
]
怎么样查
db.collection('books').where({
auther_id: 'a001'
}).get({
success: function(res) { // res.data 是包含以上定义的两条记录的数组 console.log(res.data) }})
如何得到结果让book里直接包含auther
[
{
_id: b001
auther: {
_id: a001,
name: Tom
}
}
]