8

我已经更新了 jekyll,现在得到了这个错误:

Liquid Exception: Unknown operator forloop in collection.html

这是有问题的代码:

{% for tag in site.content_data.tags %}{{ tag }}{% if not forloop.last %}, {% endif %}{% endfor %}

我将如何解决此错误?

4

2 回答 2

18

我怀疑你的语法不是有效的,因为我在操作符部分{% if not forloop.last %}没有看到它。

你试过{% if forloop.last == false %}吗?

于 2013-07-16T22:00:34.460 回答
6

不与 Yi Zeng 相矛盾,但您也可以使用以下方法解决此问题:

{% unless forloop.last %}something{% endunless %} 
于 2015-12-07T14:01:46.667 回答