1

是否有任何选项可以在标签内使用变量,例如,

{% for product in category.products | limit: {{section.limit}} %}

我试过使用捕获或分配对我不起作用。提前致谢..

4

1 回答 1

0

只是{% for product in category.products | limit: section.limit %}

发表评论后编辑:

我将 String 转换为 Integer 的唯一方法是:

{% assign limit = section.limit | plus: 0 %}

然后{% for product in category.products | limit: limit %}

和整数到字符串:{% assign str = 1 | append: "" %} => str == "1"

于 2018-03-27T09:35:52.867 回答