第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在液體中創(chuàng)建一個簡單的數(shù)組

在液體中創(chuàng)建一個簡單的數(shù)組

PHP
HUX布斯 2024-01-19 20:55:32
我需要按產(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ù)組的原因。


查看完整回答
反對 回復(fù) 2024-01-19
  • 1 回答
  • 0 關(guān)注
  • 181 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號