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