gpt4 book ai didi

twig - 检查 Twig 中的变量是否已定义并且是否为真

转载 作者:行者123 更新时间:2023-12-02 22:02:59 24 4
gpt4 key购买 nike

在 PHP 中我可以做到

<?php if ($someVar): ?>

这会检查变量是否存在以及其值是否与类似零的值(如 0、null、'' 等)不同。

在 Twig 中有什么方法可以做到这一点,还是我需要为此编写自己的过滤器?此刻,我必须做

{% if someVar is defined and someVar %}

当涉及到更复杂的模板时,这是一个痛苦。

最佳答案

(至少)有两种方法可以在不扩展 Twig 的情况下做到这一点。第三种选择是通过创建例如来扩展 Twig。一个 Twig 函数。我可能会选择第一种方式(使用default过滤器)。

<小时/>

使用默认过滤器

正如 @The_Unknown 指出的,您还可以使用 default filter :

{% if someVar|default(null) %}

您可以省略向过滤器传递默认值,甚至省略括号。那么该值将默认为空字符串(这是错误的)。 IE。这两者是平等且有效的:

{% if someVar|default() %}
{% if someVar|default %}

无论您选择哪种样式(默认为 null,省略值或省略括号),请坚持使用。保持一致。

See TwigFiddle演示真值的计算结果为 true,假值的计算结果为 false(基于下表)。

<小时/>

通过将 strict_variables 设置为 false

通过将环境变量 strict_variables 设置为 false,您可以跳过 if someVar is Defined 部分,只执行 {% if someVar %}。如 Twig's documentation 中所述:

strict_variables boolean

If set to false, Twig will silently ignore invalid variables (variables and or attributes/methods that do not exist) and replace them with a null value. When set to true, Twig throws an exception instead (default to false).

创建 Twig_Environment 实例时将变量设置为 false:

$twig = new Twig_Environment($loader, ['strict_variables' => false]);

如果someVar未定义,那么{% if someVar %}显然是falseThe if tag's documentation page描述了已定义变量的边缘情况规则:

The rules to determine if an expression is true or false are the same as in PHP; here are the edge cases rules:

Value                     Boolean evaluationempty string              falsenumeric zero              falsewhitespace-only string    trueempty array               falsenull                      falsenon-empty array           trueobject                    true

See TwigFiddle进行演示(标题中“更多选项...”链接后面的 strict_variables 设置为 false)。

<小时/>

通过扩展 Twig

(免责声明:我在 @The_Unknown 指出也可以使用 default 过滤器之前编写了此方法。)

如果将 strict_variables 设置为 false 的想法太笼统,您还可以扩展 Twig。我认为最好将 strict_variables 设置为 true 以避免由例如以下原因引起的意外错误:变量名中存在拼写错误,因此这种方法可能会更好。

我认为您不能创建一个过滤器来执行此操作,因为 undefined variable 仍然会引发异常。您也许能够创建自定义标签、测试或扩展(有关扩展 Twig 的方法,请参阅 Extending Twig);我将创建一个自定义函数,因为它可能是最简单的方法。

$twig->addFunction(new Twig_Function('istruthy', function($context, $var) {
return array_key_exists($var, $context) && $context[$var];
}, ['needs_context' => true]));

['needs_context' => true] 部分在这里至关重要,因为这样您就可以访问 $context,其中包含当前上下文中存在的变量。 (例如,您可以将 var_dump($context) 放在 return 语句上方以自行查看。)

如果您希望istruthy支持同时检查多个变量,您可以这样做:

$twig->addFunction(new Twig_Function('istruthy', function($context, ...$vars) {
foreach ($vars as $var) {
if (!array_key_exists($var, $context) || !$context[$var]) {
return false;
}
}

return true;
}, ['needs_context' => true]));

然后在 Twig 中你可以这样做:

{% if istruthy('foo') %} ... {% endif %}

{% if istruthy('foo') or istruthy('bar') %} ... {% endif %}


{# These two are the same: #}

{% if istruthy('foo') and istruthy('bar') and istruthy('baz') %} ... {% endif %}

{% if istruthy('foo', 'bar', 'baz') %} ... {% endif %}


{# Ternary operator can also be used: #}

{{ istruthy('foo') ? 'yep' : 'nope' }}

您可能想在 istruthy 函数中检查参数是字符串还是其他内容,然后采取相应的操作。 array_key_exists 期望第一个参数是字符串或整数。

关于twig - 检查 Twig 中的变量是否已定义并且是否为真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48302206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com