Django2项目开发注意事项

表单POST请求需要加{% csrf_token %}

reverse反转写法

#users为当前app的名称,index为路径名称
reverse('users:index')

使用正则需要引入re_path

全局404、500页面配置

全局404、500页面配置
注意:
Django2.2.2中,500视图不需要加exception

def page_not_found(request, exception):
    return render(request,'handler_404.html')
def page_error(request):
    return render(request,'handler_500.html')

知识文档

https://blog.csdn.net/weixin_42134789/article/details/80276855

模板页面获取路径

Django2项目开发注意事项_第1张图片

你可能感兴趣的:(python)