我正在 Twig 中运行一个循环:
{% for item in items %}
<div class="description">
Title: {{ item.name }}<br />
Price: {{ item.price }}
</div>
{% else %}
<p>...</p>
{% endfor %}
如果 item.price 为空,则会引发异常。当某个值为空时,我不能简单地强制 Twig 给出“无”吗?
或者我是否总是需要 {% if item.x %}{{ item.x }}{% endif %} 来获取所有值?