Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎它应该很简单,但我很难找到答案。
如何在 Nunjucks 模板中找到当前页面的 URL?
这样的事情将是完美的:
<a href="{{ page.url }}">Some link</a>
取决于您的请求对象的属性,如果它是来自 django 的 wsgi 请求,我只需将其打印为 {{ request.build_absolute_uri }}
尝试这样的事情:{{ request.headers.referer }},
{{ request.headers.referer }}
或者这个:{{ request.url }}。
{{ request.url }}