MongoDB 數(shù)據(jù)庫(kù)引用

2022-09-06 17:16 更新

在上一章節(jié)MongoDB關(guān)系中我們提到了MongoDB的引用來(lái)規(guī)范數(shù)據(jù)結(jié)構(gòu)文檔。

MongoDB 引用有兩種:

  • 手動(dòng)引用(Manual References)
  • DBRefs

DBRefs vs 手動(dòng)引用

考慮這樣的一個(gè)場(chǎng)景,我們?cè)诓煌募现?(address_home, address_office, address_mailing, 等)存儲(chǔ)不同的地址(住址,辦公室地址,郵件地址等)。

這樣,我們?cè)谡{(diào)用不同地址時(shí),也需要指定集合,一個(gè)文檔從多個(gè)集合引用文檔,我們應(yīng)該使用 DBRefs。


使用 DBRefs

DBRef的形式:

{ $ref : , $id : , $db :  }

三個(gè)字段表示的意義為:

  • $ref:集合名稱
  • $id:引用的id
  • $db:數(shù)據(jù)庫(kù)名稱,可選參數(shù)

以下實(shí)例中用戶數(shù)據(jù)文檔使用了 DBRef, 字段 address:

{
   "_id":ObjectId("53402597d852426020000002"),
   "address": {
   "$ref": "address_home",
   "$id": ObjectId("534009e4d852427820000002"),
   "$db": "w3cschoolcc"},
   "contact": "987654321",
   "dob": "01-01-1991",
   "name": "Tom Benzamin"
}

address DBRef 字段指定了引用的地址文檔是在 address_home 集合下的 w3cschoolcc 數(shù)據(jù)庫(kù),id 為 534009e4d852427820000002。

以下代碼中,我們通過(guò)指定 $ref 參數(shù)(address_home 集合)來(lái)查找集合中指定id的用戶地址信息:

>var user = db.users.findOne({"name":"Tom Benzamin"})
>var dbRef = user.address
>db[dbRef.$ref].findOne({"_id":(dbRef.$id)})

以上實(shí)例返回了 address_home 集合中的地址數(shù)據(jù):

{
   "_id" : ObjectId("534009e4d852427820000002"),
   "building" : "22 A, Indiana Apt",
   "pincode" : 123456,
   "city" : "Los Angeles",
   "state" : "California"
}
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)