我使用nunjucks渲染一些變量:模板渲染錯誤
<div class="zoomable zoomable-{{ slide.index }}"> << this works
{% if slide.temp is none %} << this doesn't
{% include "layouts/"+{{slide.layout}} %} << this doesn't
{% endif %}
</div>
當JS調用nunjucks.render,我得到以下錯誤:
parseAggregate: expected colon after dict key
在include
有是這兩個問題:
- 它不應該跳過的條件,b因爲該屬性
temp
不存在。 - 是不是讓我訪問
slide
屬性?因爲slide.layout
有效
我做錯了什麼?
也不知道'none'是一個有效的比較,沒有使用nunjucks。也許嘗試'如果不是slide.temp' – theleebriggs