建立模型之后,执行迁移,报如下错误:
__init__() got an unexpected keyword argument ‘qnique‘
错误原因:模型的属性的约束添加错误,这种错误一般就是单词拼写,参数少传的粗心导致的,细心点即可避免。
解决方案:修改模型的约束,
执行:
python manage.py makemigrations
python manage.py migrate
迁移成功。
Django--bug--__init__() got an unexpected keyword argument 'qnique'
原文地址:https://www.cnblogs.com/alicelai1319/p/10158452.html
时间: 2024-10-08 00:06:51