Flask 怎样获取当前页面的相对路径


如题,当前页面为 "/about" 时,就 active


 <a href="#"{% if 当前路径 == "/about" %} class="active"{% endif %}>About</a>

类似上面这种, 当前路径 如何获取?

flask python

至少放过妈妈吧 10 years, 3 months ago

可以使用request.path
官方文档如下:
http://flask.pocoo.org/docs/0.10/api/#incoming-request-data

In this case the values of the above mentioned attributes would be the following:

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/

calve answered 10 years, 3 months ago

Your Answer