如何访问查询参数或Flask路由中的查询字符串?这在Flask文档中并不明显。

下面的示例路由/数据说明了我想要访问该数据的上下文。如果有人请求example.com/data?abc=123这样的东西,我想访问字符串?abc=123,或者能够检索像abc这样的参数值。

@app.route("/data")
def data():
    # query_string = ???
    return render_template("data.html")

当前回答

在O'Reilly flask Web development中描述的从flask请求对象中检索的查询字符串的每一种形式:

来自O'Reilly Flask Web Development,正如Manan Gouhari之前所说,首先你需要导入请求:

from flask import request

request是一个由Flask作为上下文变量(你猜对了)request公开的对象。顾名思义,它包含客户端包含在HTTP请求中的所有信息。该对象有许多属性和方法,您可以分别检索和调用它们。

您有相当多的请求属性,其中包含可供选择的查询字符串。在这里,我将列出以任何方式包含查询字符串的每个属性,以及O'Reilly书中对该属性的描述。

首先是args,它是“一个包含URL查询字符串中传递的所有参数的字典”。所以如果你想把查询字符串解析成一个字典,你可以这样做:

from flask import request

@app.route('/'):
    queryStringDict = request.args

(正如其他人指出的那样,你也可以使用.get('<arg_name>')从字典中获取特定的值)

Then, there is the form attribute, which does not contain the query string, but which is included in part of another attribute that does include the query string which I will list momentarily. First, though, form is "A dictionary with all the form fields submitted with the request." I say that to say this: there is another dictionary attribute available in the flask request object called values. values is "A dictionary that combines the values in form and args." Retrieving that would look something like this:

from flask import request

@app.route('/'):
    formFieldsAndQueryStringDict = request.values

(同样,使用.get('<arg_name>')从字典中获取特定项)

另一个选项是query_string,它是“URL的查询字符串部分,作为原始二进制值”。例如:

from flask import request

@app.route('/'):
    queryStringRaw = request.query_string

然后有一个额外的奖励是full_path,它是“URL的路径和查询字符串部分”。比如:

from flask import request

@app.route('/'):
    pathWithQueryString = request.full_path

最后,url,“客户端请求的完整url”(包括查询字符串):

from flask import request

@app.route('/'):
    pathWithQueryString = request.url

快乐黑客:)

其他回答

在O'Reilly flask Web development中描述的从flask请求对象中检索的查询字符串的每一种形式:

来自O'Reilly Flask Web Development,正如Manan Gouhari之前所说,首先你需要导入请求:

from flask import request

request是一个由Flask作为上下文变量(你猜对了)request公开的对象。顾名思义,它包含客户端包含在HTTP请求中的所有信息。该对象有许多属性和方法,您可以分别检索和调用它们。

您有相当多的请求属性,其中包含可供选择的查询字符串。在这里,我将列出以任何方式包含查询字符串的每个属性,以及O'Reilly书中对该属性的描述。

首先是args,它是“一个包含URL查询字符串中传递的所有参数的字典”。所以如果你想把查询字符串解析成一个字典,你可以这样做:

from flask import request

@app.route('/'):
    queryStringDict = request.args

(正如其他人指出的那样,你也可以使用.get('<arg_name>')从字典中获取特定的值)

Then, there is the form attribute, which does not contain the query string, but which is included in part of another attribute that does include the query string which I will list momentarily. First, though, form is "A dictionary with all the form fields submitted with the request." I say that to say this: there is another dictionary attribute available in the flask request object called values. values is "A dictionary that combines the values in form and args." Retrieving that would look something like this:

from flask import request

@app.route('/'):
    formFieldsAndQueryStringDict = request.values

(同样,使用.get('<arg_name>')从字典中获取特定项)

另一个选项是query_string,它是“URL的查询字符串部分,作为原始二进制值”。例如:

from flask import request

@app.route('/'):
    queryStringRaw = request.query_string

然后有一个额外的奖励是full_path,它是“URL的路径和查询字符串部分”。比如:

from flask import request

@app.route('/'):
    pathWithQueryString = request.full_path

最后,url,“客户端请求的完整url”(包括查询字符串):

from flask import request

@app.route('/'):
    pathWithQueryString = request.url

快乐黑客:)

我更喜欢

user = request.args['user'] if 'user' in request.args else 'guest'

over

user = request.args.get('user')

通过这种方式,您可以首先检查url实际上包含查询字符串

通常我们只是想将整个查询字符串映射到适当的python数据结构中,然后从那里获取它。合适的结构是多字典,因为关键字可以重复,例如我们需要处理a = 12123a =456&B=789。多字典是一个二元组列表,其中每个二元组的第一项是键,第二项是值列表,所以上面的是[('A',['123','456']),('B',['789'])]。所有这一切都是由

qstr = request.args.lists() # A generator for the multi-dict
qstr = list(qstr) # To get the actual multi-dict

如果你想要的只是一个字典,其中第一次出现重复的关键字被使用,你可以直接去

qstr = request.args.to_dict()

我来这里是寻找查询字符串,而不是如何从查询字符串中获取值。

请求。query_string返回URL参数为原始字节字符串(参考1)。

使用request.query_string的示例:

from flask import Flask, request

app = Flask(__name__)

@app.route('/data', methods=['GET'])
def get_query_string():
    return request.query_string

if __name__ == '__main__':
    app.run(debug=True)

输出:

引用:

query_string的官方API文档

from flask import request

@app.route('/data')
def data():
    # here we want to get the value of user (i.e. ?user=some-value)
    user = request.args.get('user')