django模板

  • 我们在上文中已经讲述如何用视图文件返回文本,该文则通过讲述如何返回我们书写好的页面讲述django的模板页

  • 废话不多说,直接就是干

  • 首先需要在settings.py文件中配置模板路径

   TEMPLATE_DIRS=[{
         ... ...
         'DIRS':['templates'], #数组里面的名字自己定义
         ... ...
    }]
  • 然后在根目录下创建一个文件夹tamplates (和你定义的名字一致)

  • 然后touch一个page 我的是index.html,然后随便往里面写点东西 (我写的是hello template!!)

  • 接下来我们打开index模块的views文件,修改里面的如下:

  #from django.http import HttpResponse
    from django.shortcuts import render_to_response

    def index(req):
        #return HttpResponse('hello django!!!')
        return render_to_response('index.html')
  • 好了,运行服务器(你懂的~)

  • 然后我们就看到了hello template!!

你可能感兴趣的:(django模板)