通过flask的request对象获取url
Posted lyg-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过flask的request对象获取url相关的知识,希望对你有一定的参考价值。
测试了一下:通过发送 GET 到 http://127.0.0.1:5000/test/a?x=1,
后台输出为(官网说明):
1 request.path: /test/a
2 request.host: 127.0.0.1:5000
3 request.host_url: http://127.0.0.1:5000/
4 request.full_path: /test/a?x=1
5 request.script_root:
6 request.url: http://127.0.0.1:5000/test/a?x=1
7 request.base_url: http://127.0.0.1:5000/test/a
8 request.url_root: http://127.0.0.1:5000/
以上是关于通过flask的request对象获取url的主要内容,如果未能解决你的问题,请参考以下文章