Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将数据插入 MongoDB 数据库。我正在使用以下最小工作示例:
import pymongo conn = pymongo.Connection() db = conn.xxx db.xxx.insert({'foo': 'bar'})
执行代码时会生成数据库xxx,但没有插入任何内容。我可以从 MongoDB 命令行插入,但不能通过 Python。任何人都可以帮忙吗?
xxx
您缺少右括号。:)
另外,第二个 xxx 不是数据库。它是一个集合。