使用Mongo命令的SyntaxError

时间:2016-11-21 05:18:14

标签: mongodb

我刚开始学习Mongo DB,想在我的数据库中插入一些数据。但我收到了错误:

在代码下面运行会让我在Mongo shell中出错:

document = ( { "Type" : "Book", "Title" : "Definitive Guide to MongoDB 2nd ed.,", "ISBN" : "978-1-4302-5821-6", "Publisher" : "Apress", "Author": ["Hows, David", "Plugge, Eelco", "Membrey, Peter", “Hawkins, Tim” ] } )

E QUERY    SyntaxError: Unexpected token ILLEGAL

你能帮我解释一下这段代码的问题吗?

创建文档后,我想使用命令在我的数据库中插入。

db.media.insert(document)

1 个答案:

答案 0 :(得分:1)

在您的代码中,最后,您有

“Hawkins, Tim”

应该是

"Hawkins, Tim"

你有卷曲的引号而不是直引号。