我正在学习烧瓶。我试图使用request.args.get()。我对如何发出包含字典对象的url请求感到困惑
这是我的代码。我想向/ hello发送e网址请求,例如“ text”:“ Hello World”
@app.route("/hello")
def hello():
text = request.args.get("text",default="Hello World",type=str)
return text
答案 0 :(得分:1)
假设您要尝试通过浏览器访问此端点,并传递文本参数,请尝试以下URL:
http://127.0.0.1:5000/hello?text=Fahad
答案 1 :(得分:0)
得到答案 会是
hello?key = value