- MongoDB 教程
- MongoDB - 主页
- MongoDB - 概述
- MongoDB - 优点
- MongoDB - 环境
- MongoDB - 数据建模
- MongoDB - 创建数据库
- MongoDB - 删除数据库
- MongoDB - 创建集合
- MongoDB - 删除集合
- MongoDB - 数据类型
- MongoDB - 插入文档
- MongoDB - 查询文档
- MongoDB - 更新文档
- MongoDB - 删除文档
- MongoDB - 投影
- MongoDB - 限制记录
- MongoDB - 记录排序
- MongoDB - 索引
- MongoDB - 聚合
- MongoDB - 复制
- MongoDB - 分片
- MongoDB - 创建备份
- MongoDB - 部署
- MongoDB-Java
- MongoDB-PHP
- 高级 MongoDB
- MongoDB - 关系
- MongoDB - 数据库参考
- MongoDB - 涵盖查询
- MongoDB - 分析查询
- MongoDB - 原子操作
- MongoDB - 高级索引
- MongoDB - 索引限制
- MongoDB - 对象 ID
- MongoDB - 映射减少
- MongoDB - 文本搜索
- MongoDB - 正则表达式
- 与 Rockmongo 合作
- MongoDB-GridFS
- MongoDB - 上限集合
- 自动递增序列
- MongoDB 有用资源
- MongoDB - 问题与解答
- MongoDB - 快速指南
- MongoDB - 有用的资源
- MongoDB - 讨论
MongoDB - 数据库参考
正如在 MongoDB 关系的最后一章中看到的,为了在 MongoDB 中实现规范化的数据库结构,我们使用引用关系(也称为手动引用)的概念,其中我们手动将引用文档的 id 存储在其他文档中。但是,如果文档包含来自不同集合的引用,我们可以使用MongoDB DBRefs。
DBRefs 与手动参考
作为一个示例场景,我们将使用 DBRefs 而不是手动引用,请考虑一个数据库,我们在不同的集合(address_home、address_office、address_mailing 等)中存储不同类型的地址(家庭、办公室、邮寄等)。现在,当用户集合的文档引用地址时,它还需要根据地址类型指定要查找的集合。在文档引用来自多个集合的文档的情况下,我们应该使用 DBRefs。
使用 DBRef
DBRefs 中有三个字段 -
$ref - 该字段指定引用文档的集合
$id - 该字段指定引用文档的 _id 字段
$db - 这是一个可选字段,包含引用文档所在的数据库的名称
考虑一个具有 DBRef 字段地址的示例用户文档,如代码片段所示 -
{ "_id":ObjectId("53402597d852426020000002"), "address": { "$ref": "address_home", "$id": ObjectId("534009e4d852427820000002"), "$db": "tutorialspoint"}, "contact": "987654321", "dob": "01-01-1991", "name": "Tom Benzamin" }
这里的地址DBRef字段指定引用的地址文档位于tutorialspoint数据库下的address_home集合中,并且ID为534009e4d852427820000002。
以下代码动态地在$ref参数指定的集合中(在我们的例子中是 address_home )查找 ID 由 DBRef 中的$id参数指定的文档。
>var user = db.users.findOne({"name":"Tom Benzamin"}) >var dbRef = user.address >db[dbRef.$ref].findOne({"_id":(dbRef.$id)})
上面的代码返回address_home集合中存在的以下地址文档-
{ "_id" : ObjectId("534009e4d852427820000002"), "building" : "22 A, Indiana Apt", "pincode" : 123456, "city" : "Los Angeles", "state" : "California" }