问题:如何获得Flask请求网址的不同部分?
我想检测请求是否来自localhost:5000
或foo.herokuapp.com
主机以及请求的路径。如何获得有关Flask请求的信息?
回答 0
您可以通过以下几个Request
字段检查网址:
用户请求以下URL:
http://www.example.com/myapplication/page.html?x=y
在这种情况下,上述属性的值如下:
path /page.html script_root /myapplication base_url http://www.example.com/myapplication/page.html url http://www.example.com/myapplication/page.html?x=y url_root http://www.example.com/myapplication/
您可以通过适当的拆分轻松提取主体部分。
回答 1
另一个例子:
请求:
curl -XGET http://127.0.0.1:5000/alert/dingding/test?x=y
然后:
request.method: GET
request.url: http://127.0.0.1:5000/alert/dingding/test?x=y
request.base_url: http://127.0.0.1:5000/alert/dingding/test
request.url_charset: utf-8
request.url_root: http://127.0.0.1:5000/
str(request.url_rule): /alert/dingding/test
request.host_url: http://127.0.0.1:5000/
request.host: 127.0.0.1:5000
request.script_root:
request.path: /alert/dingding/test
request.full_path: /alert/dingding/test?x=y
request.args: ImmutableMultiDict([('x', 'y')])
request.args.get('x'): y
回答 2
你应该试试:
request.url
它假设即使在localhost上也可以一直工作(只是这样做了)。
回答 3
如果您使用的是Python,建议您浏览请求对象:
dir(request)
由于对象支持方法dict:
request.__dict__
可以打印或保存。我用它来在Flask中记录404代码:
@app.errorhandler(404)
def not_found(e):
with open("./404.csv", "a") as f:
f.write(f'{datetime.datetime.now()},{request.__dict__}\n')
return send_file('static/images/Darknet-404-Page-Concept.png', mimetype='image/png')
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。