'App' object has no attribute 'load_image'
时间: 2023-10-25 17:09:26 浏览: 94
解决运行出现dict object has no attribute has_key问题
5星 · 资源好评率100%
这个错误提示意味着在你的代码中,你正在尝试调用一个名为 `load_image` 的方法,但是该方法在 `App` 对象中不存在。
有可能是你的代码中没有定义 `load_image` 方法,或者 `load_image` 方法所在的类没有被正确地导入。
你可以检查一下你的代码,确保 `load_image` 方法已经被正确地定义并且可以被调用,如果需要的话,可以尝试重新导入相关的类。
阅读全文