安裝依賴pip3 install flask
html
建立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 |
---|---|
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)