Flask基础使用

Posted 从头开始学习测试开发

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask基础使用相关的知识,希望对你有一定的参考价值。


简介


Flask 是一个 Python 实现的 Web 开发微框架。Flask 依赖两个外部库:Jinja2 模板引擎和 Werkzeug WSGI 工具集。


安装方式:

pip install Flask


官方文档:

http://docs.jinkan.org/docs/flask/quickstart.html

Flask基础使用


本地web服务启动


# 启动web服务


app = Flask(__name__)

if __name__ == '__main__':

    app.run(debug=True, host="0.0.0.0", port=5000, threaded=True)


其中app为Flask实例对象,__name__代表的是当前模块本身的名称

Flask基础使用
Flask基础使用



前端页面模板配置


1、默认存放位置template目录下


(1)模板引擎Jinja2使用教程:

http://www.bjhee.com/jinja2-statement.html


(2)引入编译并压缩后的Bootstrap CSS、javascript 文件

<link href="{{ basedir }}staticcssootstrap.min.css" rel="stylesheet">

<script ></script>

<script ></script>


2、返回不同路径下的HTML文件

template文件夹下页面:

return render_template('index.html')


static文件夹下页面:

return send_static_file('tasklist.html')


指定文件夹下页面:

return send_from_directory(app.root_path, filename)

Flask基础使用
Flask基础使用



页面跳转


通过@app.route('/')指定跳转的页面,通过定义方法实现页面内的数据处理,将处理后的页面return传递至前端浏览器中展示内容,视图函数必须有返回内容

route()注明访问当前函数需要使用的URL;


@app.route('/')

def index():

    index_page = fundation_Form()

    return render_template('index.html', form=index_page)

Flask基础使用
Flask基础使用



前后端参数传递


1、keyword为标签的name


2、通过method来指定请求的方式

如:method=post


3、通过action请求后台接口,

如:action='/login/'

POST请求

if request.method == 'POST':

  value = request.form.get('keyword')


GET请求

if request.method == 'GET':

  request.form. args('keyword')

Flask基础使用
Flask基础使用



数据库连接

#引入处理数据库的Python库

import mysqldb


# 打开数据库连接

db = MySQLdb.connect("localhost", "username", "password", "db_name", charset='utf8')


# 使用cursor()方法获取操作游标

cursor = db.cursor()


以上是关于Flask基础使用的主要内容,如果未能解决你的问题,请参考以下文章

flask基础之请求处理核心机制

Flask基础使用

Flask基础介绍

python flask 基础入门

flask 微框架基础知识

flask 项目中使用 bootstrapFileInput(基础篇)