PyCharm搭建Django——(三)視圖&模版

一、視圖 在django中,視圖對WEB請求進行迴應 視圖接收reqeust對象作爲第一個參數,包含了請求的信息 視圖就是一個Python函數,被定義在views.py中 #coding:utf-8 from django.http import HttpResponse def index(request): return HttpResponse("index") def detai
相關文章
相關標籤/搜索