我有一个高级自定义字段转发器(contacts),转发器(contact)中的每一行都有一组复选框(组),我只是想得到每个复选框的值。我试过下面的方法,但没有成功。有人能帮忙吗?
{% for contact in mc.contacts %}
{% for group in contact.groups %}
{{ group.value }}
{% endfor %}
{% endfor %}
我有一个高级自定义字段转发器(contacts),转发器(contact)中的每一行都有一组复选框(组),我只是想得到每个复选框的值。我试过下面的方法,但没有成功。有人能帮忙吗?
{% for contact in mc.contacts %}
{% for group in contact.groups %}
{{ group.value }}
{% endfor %}
{% endfor %}
没关系,明白了-很简单{{ group }}
调用值时!
{% for contact in mc.contacts %}
{% for group in contact.groups %}
{{ group }}
{% endfor %}
{% endfor %}
我有一个高级自定义字段转发器(contacts),转发器(contact)中的每一行都有一组复选框(组),我只是想得到每个复选框的值。我试过下面的方法,但没有成功。有人能帮忙吗?
{% for contact in mc.contacts %}
{% for group in contact.groups %}
{{ group.value }}
{% endfor %}
{% endfor %}
没关系,明白了-很简单{{ group }}
调用值时!
{% for contact in mc.contacts %}
{% for group in contact.groups %}
{{ group }}
{% endfor %}
{% endfor %}