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