1.1、在应用./user下新增context_process.py文件 View Code 1.2、在工程的sky/settings.py下添加如下代码: View Code 整个settings.py的代码为: View Code 二、后端和html交互、重定向例子 2.1 编写前端表单代码: 样式: View Code {% csrf_token %}为可以保存django后端返回的csrf token值 或者注释掉:settings....
]#中间件ROOT_URLCONF='sky.urls'TEMPLATES=[ {'BACKEND':'django.template.backends.django.DjangoTemplates','DIRS': [os.path.join(BASE_DIR,'templates')],#这里设置templates的目录'APP_DIRS': True,'OPTIONS': {'context_processors': ['django.template.context_processors.debug','django.template.contex...
templates/template_tag.html下:添加模板filte的使用 View Code user/views.py下:添加视图函数 View Code sky/urls.py下:添加url路由 View Code 效果图: 工程目录结构为: 5.2模板自定义过滤器的例子: user应用下新增templatetags python package目录, my_tags.py filter和tags函数: View Code template_tag.html ...