AttributeError: 'Userinfo_form' object has no attribute 'get'
时间: 2023-11-01 15:59:41 浏览: 80
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
Attribute: 'Userinfo_form' object has no attribute 'get' 表示在Userinfo_form对象中找不到名为'get'的属性。这通常是因为在调用该属性时,它并不存在或者未正确定义。请检查你的代码,确保在Userinfo_form类中正确定义了'get'属性。你可以通过检查类的定义和相关方法来解决这个问题。另外,你还可以查看类的继承关系,以确保父类中是否存在'get'属性。
阅读全文