在Python编程中,我在尝试get_by_url_prefix时遇到了这个错误

时间:2018-04-27 02:36:15

标签: python mapping

我的代码如下:

return cls(**Database.find_one(StoreConstants.COLLECTION, {'url_prefix':{"$regex": '^{}'.format(url_prefix)}}))
TypeError: type object argument after ** must be a mapping, not NoneType

1 个答案:

答案 0 :(得分:0)

**运算符需要字典,而您的代码似乎返回None

所以,显然你的Database.find_one不会返回任何内容。