标签: python django django-templates
我想在模板中剪切request.post返回的字符串:
request.post
E.g:
我访问了网址/foo/bar/long/,现在是
/foo/bar/long/
{% if request.path[:8] == '/foo/bar' %}...{endif}
应该是真的。
答案 0 :(得分:3)
使用名为slice的内置模板过滤器:
{% if request.path|slice:':8' == '/foo/bar' %}...{endif}