在views中使用HttpResponse
~~~~~~~~~~~~~~~~~~~~~~~~~
每一個view函數最終返回的都是一個HttpResponseBase。HttpResponse是HttpResponse-
Base中最經常使用的一種。用法以下:
_____________________________________________________________________
from django.http import HttpResponse
## 最簡單的view,直接返回正文
def SimpleView1(request):
content = \
'''
<html>
<head>
<title>SimpleView 1</title>
</head>
<body>
<h1>Welcome to mysite.</h1>
<p>Hello, I am Ase.</p>
</body>
</html>
'''
return HttpResponse(content)
## 帶heads設置功能的view
def SimpleView2(request):
response = HttpResponse()
response['Good'] = 'yes' #設置heads
#設置正文
response.content = '<p>This is demo for using HttpResponse.</p>'
return response
---------------------------------------------------------------------
能夠看出,用法很是簡單。
關於HttpResponse的定義是django/http/response.py 中。
在views中使用HttpRequest
~~~~~~~~~~~~~~~~~~~~~~~~
每一個view函數都會帶一個request的HttpRequest對象做爲參數。咱們能夠在view中從
這個對象中獲取用戶的請求信息。
用GET與POST字典獲取請求數據。好比
<form method="get" action="/book/find-book">
<input type="text" name="title">
<input type="submit">
</form>
這個表單在get時url爲/book/find-book?title=Wolf
那麼的/book/find-book的view就應該這麼寫:
_______________________________________
def FindBookView(request):
book_title = request.GET['title']
---------------------------------------
這樣就能夠從Get中得到參數數據了。
關於HttpRequest的定義是django/http/request.py 中。
html