1.Flask中的HTTPResponsejson
在Flask 中的HttpResponse 在咱們看來其實就是直接返回字符串app
2.Flask中的Redirect框架
每當訪問"/redi"這個地址的時候,視圖函數redi會觸發redirect("/") 跳轉到url地址: "/" 並會觸發"/"對應的視圖函數index()函數
3.Flask 中的 render (render_template)url
HTML模板渲染是每一個Web框架中都必須有的,至於render_template的具體用法,留個懸念,日後看3d
注意: 若是要使用 render_template 返回渲染的模板,請在項目的主目錄中加入一個目錄 templatesblog
不然可能會有一個Jinja2的異常哦字符串
遇到上述的問題,基本上就是你的template的路徑問題io
4.打開並返回文件內容 send_file("文件的路徑")模板
5.標準JSON格式的Response jsonify({name:1}) # Content-type:application/json