我正在使用db-migrate https://db-migrate.readthedocs.io/en/latest/
我正在尝试将文档插入MongoDB集合中,并且需要在几个字段上使用ObjectId
。我收到未定义ObjectId的错误
[ERROR] AssertionError [ERR_ASSERTION]: ifError got unwanted exception: ObjectId is not defined
db-migrate是否不允许要求ObjectId?
var ObjectID = require('mongodb').ObjectID;
答案 0 :(得分:0)
我将我的require语句更改为
var ObjectId = require('mongodb').ObjectID;