我目前正在比较两个数组和它们的id。如果它们匹配,则应输出计数值。它完全有效,但如果有另一种方法可以做到这一点,而不是:
{% for count in product_count %}
{% if count.term_id == child._menu_item_object_id %}
{{ count.count }}
{% endif %}
{% endfor %}
感谢您的任何支持! :)
感谢@DarkBee
{% for count in product_count if count.term_id == child._menu_item_object_id %}