我有一个多维数组,其中存在一些对象而其他对象则不存在.整个数据已在页面中使用.然后我打算用TWIG检查一下.
示例数据:
array:2[
0 => Data1 {
-id: 17
-porodType: "1d"
-name: "Dally promotion"
}
1 => Data1 {
-id: 34
-porodType: "S"
-name: "Special"
}
]
如何检查响应中是否存在porodType =“1d”的记录?
如何为此操作显示不同的消息:存在(OK)/不存在(ERROR)?
在TWIG办理登机手续时:
{% for d in Data1 %}
{% if d.porodType == '1d' %}
OK
{% else %}
Error
{% endif %}
{% endfor %}
此代码结果为:< button class =“btn”> OK< / button>< button class =“btn”>错误< / button>
但我期待< button class =“btn”> OK< / button>或< button class =“btn”> ERROR< / button>
解决方法:
如果您只想显示一个按钮,则需要使用标记跟踪错误,因为您无法在Twig中断开循环,
{% set error = false %}
{% for d in Data1 %}
{% if d.porodType != '1d' %}
{% set error = true %}
{% endif %}
{% endfor %}
{% if error %}
Error
{% else %}
OK
{% endif %}
标签:php,twig
来源: https://codeday.me/bug/20190828/1752000.html