我需要按產(chǎn)品的數(shù)量制作一個關(guān)聯(lián)數(shù)組。如何將這一襯墊從 php 轉(zhuǎn)換為液體foreach(items as item) $product[$item.product_id] += $item.quantity我想到的最好的就是這個{% for item in cart.items %} {% assign product[item.product_id] = 0 | plus product[item.product_id] | plus item.quantity %}{% endfor %}
1 回答

慕虎7371278
TA貢獻1802條經(jīng)驗 獲得超4個贊
你不能像在 Liquid 中的其他語言一樣創(chuàng)建數(shù)組。創(chuàng)建數(shù)組的唯一方法是在拆分字符串之后。
所以你不能使用創(chuàng)建數(shù)組項product[item.product_id]。
您首先需要生成一個字符串,然后通過拆分該字符串來創(chuàng)建數(shù)組。
{%- capture items -%}
{%- for line_item in cart.items -%}
{{- line_item.product_id -}}|{{-line_item.quantity-}},
{%- endfor -%}
{%- endcapture -%}
{% assign items_array = items | split: ',' %}
這就是我們捕獲輸出并將其分割以創(chuàng)建數(shù)組的原因。
- 1 回答
- 0 關(guān)注
- 181 瀏覽
添加回答
舉報
0/150
提交
取消