我目前正在比较两个阵列及其ID。如果匹配,则应输出计数值。它是完全有效的,但是如果还有其他方法可以做到这一点而不是:
{% for count in product_count %}
{% if count.term_id == child._menu_item_object_id %}
{{ count.count }}
{% endif %}
{% endfor %}

感谢您的支持! :)
答案 0 :(得分:0)
感谢@DarkBee
{% for count in product_count if count.term_id == child._menu_item_object_id %}