摘要: 报错:'bool' object is not callable 原因:is_authenticated是属性而不是方法 解决:把括号去掉就可以了 demo: class A(): def __init__(self, x): self.x = x def add(self): return 3 a 阅读全文
posted @ 2022-12-14 23:13 半日闲1 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 问题: python manage.py createsuperuser 无法创建超级用户 报错:django.db.utils.DataError: (1406, "Data too long for column 'password' at row 1") 问题原因:用户模型继承 Abstrac 阅读全文
posted @ 2022-12-14 15:25 半日闲1 阅读(177) 评论(0) 推荐(0) 编辑