AttributeError: '_asyncio.Future' object has no attribute 'status_code'
时间: 2023-10-22 20:07:05 浏览: 176
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为您在使用异步编程时,将一个 Future 对象(类似于 Promise)和一个需要状态码的同步代码混淆了。
请检查您的代码,确保您正在使用的是同步请求,而不是异步 Future 对象。如果您确实需要使用异步请求,那么请确保您正在正确地处理 Future 对象的结果,并且不会尝试访问状态码等同步属性。
阅读全文