摘要: mount umount df du 阅读全文
posted @ 2019-07-06 22:12 富坚老贼 阅读(111) 评论(0) 推荐(0) 编辑
摘要: url_for() @app.route('/hello/') def hello_world(): return 'heeee' @app.route('/user/<name>') def hello_user(name): if name == 'admin': return redirect 阅读全文
posted @ 2019-07-06 15:52 富坚老贼 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1.一般 http://127.0.0.1:5000/meng @app.route('/hello') def hello_world(): return 'heeee' 2.类型转换 默认接受转成string类型 http://127.0.0.1:5000/3 @app.route('/<int 阅读全文
posted @ 2019-07-06 14:01 富坚老贼 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 一、创建一个web pip install flask from flask import Flask app=Flask(__name__) @app.route('/') def index(): return 'hello' #直接运行启动 if __name__ =='__main__': 阅读全文
posted @ 2019-07-06 11:32 富坚老贼 阅读(159) 评论(0) 推荐(0) 编辑