if...true
条件句就像文档中概述的魅力一样。
但如果我尝试做类似的事情:
{% if !posts.length %}
<i>No project posts yet!</i>
{% endif %}
我收到一个错误:
Template render error: (/home/nak/clones/mf3/views/project.html) [Line 10, Column 9]
unexpected token: !
我通过以下方式解决了这个问题:
{% if posts.length %}
{% else %}
<i>No project posts yet!</i>
{% endif %}
有没有更好(正确)的方法来做到这一点?