1、請求週期
url> 路由 > 函式或類 > 返回字串或者模板語言?
form表單提交:
提交 -> url > 函式或類中的方法
使用者 < < 返回字串
(當接受到redirect時)自動發起另外乙個請求
--> url .....
ajax:
$.ajax())}, $(form物件).serilize()
type: 'post',
datatype: 'json':
traditional: true,
success:function(d)
})提交 -> url -> 函式或類中的方法
# @method_decorator(auth) #使用cbv的時候需要把auth當做引數傳入django的裝飾器類裡面
def get(self,reqeust):
v = reqeust.cookies.get('username111')
return render(reqeust,'index.html',)
九 django學習筆記四
這篇筆記主要是關於django模組的操作 1.1配置 在工程中建立模板目錄templates,在settings.py配置檔案中修改templates配置項的dirs值 templates 1.2定義模組 在templates目錄中新建乙個模板檔案,如index.html en utf 8 titl...
Django學習筆記(四)載入靜態頁面
本次學習搭建網頁,獲取位址資料 djproject為django應用 student為django子應用 先看看如何載入靜態html的 1 我們先在manage.py同級目錄下建立乙個資料夾存放html頁面檔案,例如 2 django有個函式專門用來載入網頁模板 render to response...
Django模組筆記 四
入門筆記翻譯整理自 該筆記將對各個模組進行單獨介紹 template 1.配置 configuration 1 templates 2,9 10 2.使用 get template 載入模板,select template 載入模板列表。他們會在dirs指定的目錄下尋找相應模板。render to ...