0
我在所有示例中都看到引用另一個文檔的字段上的後綴「_id」。用Mongoose引用文檔的正確方法
例子:
record: {
_id : ObjectId("57f2fb5d1c6c3b0de45b170e",
artist_id: "prince")
}
artist: {
_id: "prince"
}
作爲我的藝術家蒙戈架構對名稱字段「獨一無二」的屬性。
對下面的東西可以嗎?
record: {
_id : ObjectId("57f2fb5d1c6c3b0de45b170e",
artist: "prince")
}
artist: {
_id : ObjectId(6eygdqzd5d1c6c3b0de45b1s0r",
name: "prince"
}
或者你應該總是直接引用第一個例子中的Id嗎?