一、启动本地web服务
# 启动web服务
if __name__ == '__main__':
app.run(debug=True, host="0.0.0.0", port=5000, threaded=True)
二、前端页面模板
1、默认存放位置
template
目录下
(1)模板引擎Jinja2使用教程:http://www.bjhee.com/jinja2-statement.html
(2)引入编译并压缩后的Bootstrap CSS、JavaScript 文件
<link href="{{ basedir }}\static\css\bootstrap.min.css" rel="stylesheet">
<script src="{{ basedir }}\static\js\bootstrap.min.js"></script>
<script src="{{ basedir }}\static\js\jquery.js"></script>
2、返回不同路径下的HTML文件
(1)return render_template('index.html')
(2)return send_static_file('tasklist.html')
(3)return send_from_directory(app.root_path, filename)
三、前后端参数传递
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')
四、使用数据库存储读取数据
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect("localhost", "username", "password", "db_name", charset='utf8')
# 使用cursor()方法获取操作游标
cursor = db.cursor()
网友评论