from flask import Flask,request,render_template

# 1、初始化application
app = Flask(__name__,
template_folder='html_file' # 指定HTML文件查找位置
)
# 路由
# @app.route('/index') # route()装饰器用于将URL绑定到函数
def hello_world():
data = request.args # 获取请求中数据
name = data.get("username")
# return '<p style="color:red">你好 Flask.{}</p>'.format(name)
return render_template('index.html')

app.add_url_rule('/','hello',hello_world) # add_url_rule函数也可以将URL与函数绑定


if __name__ == '__main__':
app.debug = True
# 2、运行服务
app.run()
app.run(debug=True)