美文网首页
Django骚操作

Django骚操作

作者: 敦敦实实 | 来源:发表于2018-09-25 16:23 被阅读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参数
    

    相关文章

      网友评论

          本文标题:Django骚操作

          本文链接:https://www.haomeiwen.com/subject/ptyloftx.html