是否可以在标签中使用变量,例如
{% for product in category.products | limit: {{section.limit}} %}
我尝试使用捕获或分配对我不起作用。 提前谢谢..
答案 0 :(得分: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"