Shopify JSON Api的javascript
发布时间:2022-08-10 09:37:51 147
相关标签: # 前端
我正在shopify中建立一个集合,并使用一个带有{% layout none %}
这是我的密码
{% layout none %}
{
"title": {{ collection.title | json }},
"description": {{ collection.description | json }},
"products": [
{% for product in collection.products %}
{
"title": {{ product.title | json }},
"variants": [
{% for variant in product.variants %}
{
"id": {{ variant.id }},
"option1": {{ variant.option1 | json }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"linked_products": [
{% for linked_product in collection.products %}
{% if linked_product.id != product.id and linked_product.title == product.title %}
{
"title": {{ linked_product.title | json }},
"handle": {{ linked_product.handle | json }}
}{% unless forloop.last %},{% endunless %}
{% endif %}
{% endfor %}
]
}{% unless forloop.last %},{% endunless%}
{% endfor%}
]
}
问题来自{% unless forloop.last%},{% endunless %}
上linked_products
所有物在某些迭代中插入了一个尾随逗号。我一直在思考如何解决这个问题。
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报