Twig中是否有较短的语法来输出条件字符串?
<h1>{% if not info.id %}create{% else %}edit{% endif %}</h1>
传统的php比这更简单:
<h1><?php info['id']? 'create' : 'edit' ?></h1>
Answers:
value="{{ person.curp is not null ? person.curp : '' }}"
)
如果需要比较该值等于某项操作,则可以执行以下操作:
{{ user.role == 'admin' ? 'is-admin' : 'not-admin' }}
您可以在树枝内使用Elvis Operator:
{{ user ? 'is-user' }}
{{ user ?: 'not-user' }} // note that it evaluates to the left operand if true ( returns the user ) and right if not
wrapping the island in parens
-您可以分享您的示例吗?