python获取数据库返回的结果_python 查数据库的数据返回的是没有数据?
def process_item(self, item, spider):print('打印的文件地址和名字为')print(item['file_url'], item['name'])key_word = {"file_url": "asdasdasd", "name": "asdasdadas"}res = self.db.find(key_word)print('查到的数据为')print...