main() const main = async () =>{ const task = await Task.findById('614ac31e103d9c5329d38686') await task.populate('owner').execPopulate() console.log(task.owner) }
execPopulate()不是函数
m3eecexj1#
从以下位置的更改日志中,该行应替换为
await task.populate('owner')
inb24sb22#
mongoose的最新版本中已删除execPopulate(),代码仅在使用由于弃用而不建议使用的旧版本时才能工作只需删除execPopulate并保留任务。populate('owner ')
2条答案
按热度按时间m3eecexj1#
从以下位置的更改日志中,
该行应替换为
inb24sb22#
mongoose的最新版本中已删除execPopulate(),代码仅在使用由于弃用而不建议使用的旧版本时才能工作
只需删除execPopulate并保留任务。populate('owner ')