django 模板
採用了 jinja2模板
但是與flask有一定的出入需要注意
#匯入模板解析庫
from django.shortcuts import render
#模板傳值
return render(request,'d2_index.html',)}}
}}}}
}}姓名:} } 年齡:}}
}}}截斷字元操作}
截斷單詞操作}
}cookie簡易操作
#定義回應
response = httpresponse("儲存成功
")#第三個引數也可以傳
max_age,
單位是秒
response.set_cookie("email",p1,max_age=10)
#返回回應
return response
django 模板語法
顯示的資料必須是後端view.py傳輸的資料 名字 1.普通輸出 2.for 迴圈 3.if 判斷 forloop.counter 索引從 1 開始算 forloop.counter0 索引從 0 開始算 forloop.revcounter 索引從最大長度到 1 forloop.revcounte...
Django 模板語法
1.模板語法的操作 1 後端檢視處理函式中,傳遞資料給前端網頁,將資料報含在字典中進行傳遞 2 前端網頁中展示資料 展示變數中的資料 判斷條件 展示的 迴圈遍歷 遍歷的 2.提交資料 http1.1標準提供了8種請求方式 網頁發起的請求,向伺服器請求 get,post,put,deletr,head...
Django之模板語法
第一種 return render request,index.html 第二種 return render request,index.html locals 將當前所在的命名空間中的名字全部傳遞給前端頁面python所有資料型別都可以傳 傳函式名 傳過來會自動加括號呼叫,顯示返回值。傳物件 物件...