欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mongodb在插入数据时报错

程序员文章站 2022-05-10 17:20:20
...

mongodb在执行

db.businesslog.insert({
... ... _id: ObjectId(7df78ad8902c),
... ... title: 'MongoDB Overview',
... ... description: 'MongoDB is no sql database'
... ... })

时报[thread1] SyntaxError: identifier starts immediately after numeric literal @(shell):2:14的错误
解决办法:
插入时不插入Id由数据库自动生成即可,如:去掉上述语句中的_id: ObjectId(7df78ad8902c)