PyMongo TypeError - document must be an instance of dict, bson.son.SON, or other type that inherits from collections.MutableMapping
我遇到的情况是:在db中插入一个非字典的数据导致。
正确写法:
tableName.insert_one( { 'data': data } )
由于笔误,写成了:
tableName.insert_one( data ), 于是报错如上