3、Python Django模板

Python Django模板html


銜接上一篇django


1、建立一個模板文件瀏覽器


# cat blog/template/index.htmlide

<?xml version="1.0" encoding="UTF-8"?>ui

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0.5 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">spa

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">xml

<head>htm

    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />blog

    <title>csvt</title>get

</head>

<body>

<h1>hello csvt</h1>

</body>

</html>


2、將模板文件發佈到視圖方法

(1)第一種方法:

# cat blog/views.py

from django.http import HttpResponse

from django.template import loader,Context

def index(req):

    t = loader.get_template('index.html')

    c = Context({})

    return HttpResponse(t.render(c))



(2)第二種方法:

# cat blog/views.py

from django.shortcuts import render_to_response

def index(req):

    return render_to_response('index.html',{})


經過瀏覽器訪問http://192.168.116.129/blog/index/ 都能獲得相同的結果

相關文章
相關標籤/搜索