第二篇 Flask 中的 Render Redirect HttpResponse
1.Flask中的HTTPResponsehtml
在Flask 中的HttpResponse 在咱們看來其實就是直接返回字符串框架
2.Flask中的Redirect函數
每當訪問"/redi"這個地址的時候,視圖函數redi會觸發redirect("/") 跳轉到url地址: "/" 並會觸發"/"對應的視圖函數index()post
3.Flask 中的 render (render_template)url
HTML模板渲染是每一個Web框架中都必須有的,至於render_template的具體用法,留個懸念,日後看htm
注意: 若是要使用 render_template 返回渲染的模板,請在項目的主目錄中加入一個目錄 templatesblog
不然可能會有一個Jinja2的異常哦字符串
遇到上述的問題,基本上就是你的template的路徑問題get