如何在 shopify 模板中迭代产品
How to iterate products in a shopify template
我是 Shopify 新手。我需要为商店创建一个自定义主题,我正在练习循环。但我对基本产品迭代有疑问。 in developers guide i saw this
我用过:
{% for product in collection.products %}
{{ product.title }}
{% endfor %}
我在 index.liquid 模板中添加了这段代码,但它没有重复任何内容。
有人可以帮助我吗?
谢谢
因为 collection 是仅在 Collection 页面上可用的 Liquid object。您可以在 Liquid Objects.
阅读更多内容
要迭代 index.liquid,您需要使用一些 Global Shopify Object。例如,使用 collections object,您可以像
一样迭代
{% for product in collections.frontpage.products %}
{{ product.title }}
{% endfor %}
上面代码中的Frontpage就是collection的名字。将其替换为您商店中有一些产品的 collection。
我是 Shopify 新手。我需要为商店创建一个自定义主题,我正在练习循环。但我对基本产品迭代有疑问。 in developers guide i saw this
我用过:
{% for product in collection.products %}
{{ product.title }}
{% endfor %}
我在 index.liquid 模板中添加了这段代码,但它没有重复任何内容。 有人可以帮助我吗? 谢谢
因为 collection 是仅在 Collection 页面上可用的 Liquid object。您可以在 Liquid Objects.
阅读更多内容要迭代 index.liquid,您需要使用一些 Global Shopify Object。例如,使用 collections object,您可以像
一样迭代{% for product in collections.frontpage.products %}
{{ product.title }}
{% endfor %}
上面代码中的Frontpage就是collection的名字。将其替换为您商店中有一些产品的 collection。