django模板

2016-10-31  本文已影响12人  张Boy
   TEMPLATE_DIRS=[{
         ... ...
         'DIRS':['templates'], #数组里面的名字自己定义
         ... ...
    }]
  #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')
上一篇 下一篇

猜你喜欢

热点阅读