本文主要是介绍‘Collection‘ object is not callable. If you meant to call the ‘authenticate‘ method on a ‘Database‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
[BUG已解决]链接数据库MongoDB报错:
报错模板如下:
‘Collection’ object is not callable. If you meant to call the ‘authenticate’ method on a ‘Database’ object it is failing because no such method exists.
背景
在使用前后端分离项目,后端使用flask链接数据库MongoDB,之前跑的好好的,过了一段时间发现无法运行,显示数据库连接报错。
数据库已经部署到服务器!
解决方案:
出现下面这个bug,大多数是因为我们模块版本问题,应该是版本太高,不能支持之前的语法。
from pymongo import MongoClient
‘Collection’ object is not callable. If you meant to call the ‘authenticate’ method on a ‘Database’ object it is failing because no such method exists.
回退版本:
<这篇关于‘Collection‘ object is not callable. If you meant to call the ‘authenticate‘ method on a ‘Database‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!