AttributeError: 'HTTPResponse' object has no attribute 'geturl1'解决
时间: 2023-10-31 15:05:55 浏览: 62
Python在Geany中调用matplotlib绘图时出现attributeerror错误
这个错误发生在你尝试使用 `geturl1` 属性时,但是 `HTTPResponse` 对象并没有这个属性。正确的属性应该是 `geturl`。你可以尝试将代码中的 `geturl1` 改为 `geturl`,这样就可以解决这个错误。
如果问题仍然存在,可能是因为你正在对一个非 `HTTPResponse` 对象使用 `geturl1` 属性。请确保你正在对正确的对象使用正确的属性。如果可能的话,请提供更多的代码或上下文信息,以便我们可以更好地帮助你解决问题。
阅读全文