DotLiquid 在标签内使用变量

DotLiquid using variables inside tags

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

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

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

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

在您发表评论后进行编辑:

我将字符串转换为整数的唯一方法是:

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

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

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