剪切由request.post返回的Django模板中的字符串

时间:2014-07-10 11:33:11

标签: python django django-templates

我想在模板中剪切request.post返回的字符串:

E.g:

我访问了网址/foo/bar/long/,现在是

{% if request.path[:8] == '/foo/bar' %}...{endif}

应该是真的。

1 个答案:

答案 0 :(得分:3)

使用名为slice的内置模板过滤器:

{% if request.path|slice:':8' == '/foo/bar' %}...{endif}