http://127.0.0.1:5000/index?age=19&pwd=123 //GET请求
@app.route("/index")
def index():
age = request.args.get("age")pwd = request.args.get("pwd")print(age, pwd)
return“成功"

image.png
http://127.0.0.1:5000/index?age=19&pwd=123 //GET请求
@app.route("/index")
def index():
age = request.args.get("age")pwd = request.args.get("pwd")print(age, pwd)
return“成功"