How to obtain values of parameters of get request in flask?

戏子无情 提交于 2019-11-29 00:53:52

The simple answer is you have not imported the request global object from the flask package.

from flask import Flask, request

This is easy to determine yourself by running the development server in debug mode by doing

app.run(debug=True)

This will give you a stacktrace including:

print request.args['x']
NameError: global name 'request' is not defined

http://localhost:5000/api/iterators/opel/next?n=5

For something like the case before

from flask import Flask, request
n = request.args.get("n")

Can do the trick

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!