要明确这个问题涉及从数据库加载数据,而不是更新数据库中的文档。
使用以下架构:
new mongoose.Schema
name: String
code:
type: String
index:
unique: true
_contacts: [
type: mongoose.Schema.Types.ObjectId
ref: 'Person'
]
我已经创建了我的文档:
client = new Client code:'test',name:'test competition',contacts:[]
client.save()
在应用程序的其他地方或通过API调用,它无法轻易引用上面缓存的版本:
Client.findOne(code:'test').exec (err,client) ->
return if err or not client
client._contacts.push person.id # person has come from somewhere
client.save (err) ->
return err if err
如果我们返回到我们原来的客户端对象,我想知道的是,是否有办法为整个文档或只是特定路径刷新该对象。例如;
client.refresh '_contacts', (err) ->
return err if err
或者更好的做法是只维护一个全局引用的对象?
答案 0 :(得分:8)
最佳做法是只保留像client
这样的Mongoose模型实例,只要您正在积极使用它,正是因为它很容易与数据库中的内容不同步。使用client
随时重新创建findOne
对象,而不是尝试刷新可能过时的副本。