摘要:
问题:不小心删掉了数据库中的表格,重新迁移时出现如下问题 解决办法: 1. 在数据库中新建dashboard_piechart表 2. 运行py manage.py migrate dashboard zero 3. 运行py manage.py migrate dashboard 查看数据库,新建 阅读全文
摘要:
问题:删掉数据库,新建数据库一直出现上图错误。 解决方法: 在settings.py中添加 AUTH_USER_MODEL = 'users.CustomUser' 阅读全文
摘要:
问题:重置密码时出错 SMTPSenderRefused at /users/password_reset/ (501, b'Mail from address must be same as authorization user.', 'webmaster@localhost') 解决方案: EM 阅读全文
摘要:
1. 开启POP3/SMTP,获得EMAIL_HOST_PASSWORD。 2. 在setting.py中添加代码 EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'smtp.qq.com' EMA 阅读全文
摘要:
问题:在使用django-crispy-forms时,跳转到signup页面出错 django.template.exceptions.TemplateDoesNotExist: bootstrap4/uni_form.html 解决方法: 使用bootstrap5 1. 安装crispy-boot 阅读全文