AttributeError: 'Manage' object has no attribute 'add_stu'
时间: 2023-10-30 14:07:47 浏览: 92
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常表示在 `Manage` 对象中缺少 `add_stu` 属性。这可能是因为你在 `Manage` 类中没有定义 `add_stu` 方法或属性。请确保在 `Manage` 类中添加了正确的方法或属性来执行 `add_stu` 操作。你可以检查代码并确保在 `Manage` 类中包含了正确的定义。
阅读全文