AttributeError: 'User_shopping' object has no attribute 'chick' 该报错是什么原因
时间: 2023-10-10 18:11:20 浏览: 209
attribute详细介绍
该报错意味着在 `User_shopping` 类的对象中,没有名为 `chick` 的属性。这可能是因为您在代码中尝试使用了 `chick` 属性,但实际上该属性并不存在于该对象中。
解决方法可能是检查代码,确保正确地创建并初始化了 `User_shopping` 对象,并且该对象具有所需的属性。如果需要,您可以在 `User_shopping` 类中添加 `chick` 属性。
阅读全文