Flask 入门 之 hello world
pip install flask #下载安装
from flask import Flask app = Flask(__name__) ''' app.route(rule,options) rule : 绑定的是URL与函数 例如:http://127.0.0.1/ options:可选参数 例如: GET, POST ''' @app.route('/') def hello_world(): return 'Hello world'
# flask 传入参数 # http://127.0.0.1:5000/hello/<name> @app.route('/hello/<name>') def hello(name): s = '<h1>hello {}</h1>'.format(name) return s # flask 转换器 # 这里转换器 只能为int 类型 # http://127.0.0.1:5000/user/1 @app.route('/user/<int:userid>') def user(userid): u = '这是用户为%d'%userid return u
if __name__ == '__main__': ''' app.run() 就是Flask的一个方法 参数说明: app.run(host,port,debug,options) host 主机名称 port 端口号 debug 调式模式,默认是false,如果设置成true 服务器会在代码修改后自动重新加载 options 可选参数 ''' app.run(debug=True)