1. 在添加模板文件夹要在settings.py中的TEMPLATES中的DIRS加入os.path.join(BASE_DIR, 'templates')
2.不要忘记将新的app添加到settings.py中
3.django使用自带的认证模块创建用户时,要注意使用create_user方法,而不是create方法,否则虽然数据库中有数据但是数据库中密码未加密并且无法通过authenticate方法
4.django 403 forbidden 原因:
1.可能由于没有form表单中没有加{% csrf_token %},有两种解决办法:一,在form表单中加入{% csrf_token %} 二,在views.py对应的方法前加入 @csrf_exempt 来使该view不经过csrf检查,import 内容为from django.views.decorators.csrf import csrf_exempt