Django骚操作
2018-09-25 本文已影响0人
敦敦实实
1、获取setting配置
from django.conf import settings
settings.EMAIL_HOST_USER
2、与react-router搭配
from django.conf.urls import url
from django.urls import path, re_path
# 在urls.py中所有url末尾添加(没有实测)
url(r'^.*/', TemplateView.as_view(template_name="index.html"), name='index')
# 或者(实测可以)
re_path('page/(?P<path>\S*)', TemplateView.as_view(template_name="index.html"), name='index')
3、request.POST 获取不到post参数
# 设置请求头
headers: { 'content-type': 'application/x-www-form-urlencoded' }
#当请求头设置为 'Content-Type':'application/json' 时 能够在request.body 中获取post参数