===运算符不能在CENT OS 6.9服务器上安装的PHP-Laravel网站上工作,如下面的代码所示。
{{ $abc_history->abc_status === 4 && $abc_history->status === 2 ? 'success' : ($abc_history->abc_status === 0 ? 'danger' : ($abc_history->abc_status === 1 ? 'active-dash' : ($abc_history->abc_status === 4 && $abc_history->status === 1? 'active-dash' : '')))}}
答案 0 :(得分:0)
因为使用==
运算符:"4" == 4 return true
,但在===
运算符"4" === 4 return false
中。