Flask的使用以及返回值(其中Response後續詳細單獨補充)

一.使用

安裝依賴pip3 install flaskhtml

第一步

建立Flask對象python

from flask import Flask
app =Flask(__name__)

第二步

建立路由django

@app.route("/index")
def index():
    return "12345"

第三步

運行json

if __name__ == '__main__':
    app.run()/

二.對應DJango中輸出方式Flask中輸出方式

DJango Flask
redirect redirect 傳參與Django相同
HttpResponse "" 直接輸出字符串便可
render render_template('渲染的網址路徑',渲染的變量這裏不一樣於django這裏是打散的字典)
JsonResponse jsonify 傳參與Django相同

關於render_template舉例flask

'''''''#前面代碼省略直接路由return
return render_template('xxx.html',變量1='xxx',變量2='xxx')
或者
dic = {'變量1'='xxx','變量2'='xxx'}
return render_template('xxx.html',**dic)
相關文章
相關標籤/搜索