typescript 自动生成ID插入数据到mongodb报错的解决方案
报错信息:
BulkWriteError: E11000 duplicate key error collection
- 提前生成好ID
- 依赖
yarn add mongoid
- 使用
const oid = require('mongoid');
let id = oid() // "51186a029cc9cefe18000001"
本文来自博客园,作者:HumorChen99,转载请注明原文链接:https://www.cnblogs.com/HumorChen/p/18039613