main()
const main = async () =>{
const task = await Task.findById('614ac31e103d9c5329d38686')
await task.populate('owner').execPopulate()
console.log(task.owner)
}
execPopulate() 不是函数
main()
const main = async () =>{
const task = await Task.findById('614ac31e103d9c5329d38686')
await task.populate('owner').execPopulate()
console.log(task.owner)
}
execPopulate() 不是函数
从https://mongoosejs.com/docs/migrating_to_6.html#removed-execpopulate的变更日志,
该行应替换为
await task.populate('owner')