摘要:
mount umount df du 阅读全文
摘要:
url_for() @app.route('/hello/') def hello_world(): return 'heeee' @app.route('/user/<name>') def hello_user(name): if name == 'admin': return redirect 阅读全文
摘要:
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 阅读全文
摘要:
一、创建一个web pip install flask from flask import Flask app=Flask(__name__) @app.route('/') def index(): return 'hello' #直接运行启动 if __name__ =='__main__': 阅读全文