1. django 数据库迁移:
python manage.py makemigration
python manage.py migrate
2. 创建admin后台用户
创建超级用户
python manage.py createsuperuser --username=admin [email protected]
3. 默认浏览表单页面
return render(request, ‘testForm.html‘, {"test":form})
#{% csrf_token %} 需要增加在主页面;
# return render_to_response("testForm.html",{"test":form}) 访问后 会出现401的异常
时间: 2024-10-13 11:34:19