Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
希望在其产品显示页面上显示特定产品所在的所有类别。(当然在所有产品的代码中)
试图获取模板的代码以显示如下:
每个顶级类别,然后是其中的子类别。我已经尝试了类别的代码,但似乎不适用于产品页面。
您可以使用 列出产品在 PDP 上的类别product.category。但是,由于这是一个数组,您可能希望循环遍历它并对其进行一些格式化。这是一个例子:
product.category
<ul> {{#each product.category}} <li>{{this}}</li> {{/each}} </ul>
如果您只想显示子类别(而不是父类别),请尝试以下代码:
<ul> {{#each product.category}} <li>{{last (split this '/')}}</li> {{/each}} </ul>
参考:https ://developer.bigcommerce.com/theme-objects/product