尝试在猫鼬中创建新记录并获得:
UnhandledPromiseRejectionWarning: MongoError: E11000 duplicate key error collection: admin.inventoryitems index: _id_ dup key: { : ObjectId('5bdf1c4a60ec674ee1a10006') }
我如何创建项目:
const createdItem = await InventoryItem.create(item);
项目不包含“ _id”字段
答案 0 :(得分:-1)
签入模型没有唯一性:真,值。如果不这样做,它将始终获取唯一数据,然后抛出mongo db重复值错误。