是否有機會通過API填充可重複的部分?因此,例如,我有產品列表,我希望在模板中只有產品部分一次,然後遍歷集合。我已閱讀關於此主題的前幾次討論並進行了Google搜索,但我仍不明白是否可以通過API。通過API迭代mailchimp模板中的集合
<!-- repeatable block -->
<div mc:repeatable>
<h2 mc:edit="product_title">Title</h2>
<p mc:edit="product_description">Body</p>
</div>
<!-- /repeatable -->
所以我可以提供這樣的事情:
html_product_title[0] = "Product1"
html_product_description[0] = "Description1"
html_product_title[1] = "Product2"
html_product_description[1] = "Description2"
而且有這種重複的部分重複了兩次?或者,也許我必須以某種其他方式命名密鑰?
謝謝!