Mailchimp 可重复部分名称
Mailchimp repeatable section name
我创建了带有如下可重复部分的 Mailchimp 模板:
<div class="article" mc:repeatable="article">
<h3 mc:edit="headline">Headline</h3>
<p mc:edit="author">Author</p>
</div>
当我使用 Mailchimp API 游乐场检查此模板的默认内容 (GET templates/my_template_id/default-content) 时,可重复部分显示为 repeat_1。
所以当我需要使用这个模板设置活动内容时,我必须填写参数:
{'template': {'id': 9999, 'sections': {'repeat_1': [{'headline': 'Headline01', 'author': 'author01'}, {'headline': 'Headline02', 'authors': 'author02'}]}}}
这种方式工作正常,但有什么方法可以使用更好的命名方式吗?我不想将其保留为 repeat_1.
收到来自 Mailchimp 支持的消息。
As for renaming the sections of the template, that flexibility is not quite there yet. For now, those names will be populated automatically.
我创建了带有如下可重复部分的 Mailchimp 模板:
<div class="article" mc:repeatable="article">
<h3 mc:edit="headline">Headline</h3>
<p mc:edit="author">Author</p>
</div>
当我使用 Mailchimp API 游乐场检查此模板的默认内容 (GET templates/my_template_id/default-content) 时,可重复部分显示为 repeat_1。
所以当我需要使用这个模板设置活动内容时,我必须填写参数:
{'template': {'id': 9999, 'sections': {'repeat_1': [{'headline': 'Headline01', 'author': 'author01'}, {'headline': 'Headline02', 'authors': 'author02'}]}}}
这种方式工作正常,但有什么方法可以使用更好的命名方式吗?我不想将其保留为 repeat_1.
收到来自 Mailchimp 支持的消息。
As for renaming the sections of the template, that flexibility is not quite there yet. For now, those names will be populated automatically.