添加路由的两种方式
第一种
@app.route("/my_de") def detail()
app.add_url_rule("/my_de",view_func=detail)
一. @app.route()中的参数
1.methods = [ ]:
当前url地址,允许访问的请求方式 类型为可迭代对象,允许八种http请求方式
@app.route("/info", methods=["GET", "POST"]) def student_info(): stu_id = int(request.args["id"]) return f"Hello Old boy {stu_id}"
2.endpoint = “ ”
路由Mapping地址对应视图函数,有点类似于django中的别名
from flask