Flask 基础
Posted py-web
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask 基础相关的知识,希望对你有一定的参考价值。
?
Flask 中的 Response
- #?-*-?coding:?utf-8?-*-??
- from?flask?import?Flask,?redirect,?render_template,?jsonify,?send_file??
- ?? ?
- app?=?Flask(__name__)??
- ?? ?
- ?? ?
- @app.route(‘/‘)??
- def?index():??
- ????return?redirect(‘/login‘)??#?跳转,重定向??
- ?? ?
- ?? ?
- @app.route(‘/login‘)??
- def?login():??
- ????return?render_template(‘login.html‘)??#?返回模板有浏览器渲染??
- ?? ?
- ?? ?
- @app.route(‘/json‘)??
- def?json():??
- ????data?=?{??
- ????????"name":?‘peach‘??
- ????}??
- ????return?jsonify(data)??#?返回json标准字符串??
- ?? ?
- ?? ?
- @app.route(‘/send_files‘)??
- def?send_files():??
- ????return?send_file(‘Dockerfile‘)??#?返回文件(打开文件,并返回文件内容,自动识别)??
- ?? ?
- ?? ?
- app.run(host=‘0.0.0.0‘,?debug=True)??
?
以上是关于Flask 基础的主要内容,如果未能解决你的问题,请参考以下文章