我正在尝试用树枝写一个if
语句,但该语句似乎不起作用。
{% if content.thumbnail_uri != '' and '/podcasts/' not in content.thumbnail_uri %}
and
之前的第一条语句正常工作。
对于第二条语句,我想确保content.thumbnail_url
(这是从JSON字符串中提取的字符串/ URI)不包含子字符串/podcasts/
。
如何在树枝模板中正确编写此if语句?
答案 0 :(得分:0)
您可以使用花括号将语句正确分组。
以下语法将起作用:
{%
if (content.thumbnail_uri is not empty)
and ("/podcasts/" not in content.thumbnail_uri)
%}