循环遍历传递给Twig模板的所有参数

时间:2013-07-12 10:00:19

标签: php templates symfony twig

有没有人知道如何循环遍历传递给Twig模板的所有参数,而不事先知道它们被称为什么? {{ dump() }}函数(调用var_dump())输出如下内容:

array(5) {
  ["foo"]=>
  bool(true)
  ["bar"]=>
  string(3) "Yes"
  ["baz"]=>
  int(99)
  ["subdata1"]=>
  array(1) {
    ["foo2"]=>
    bool(false)
  }
  ["subdata2"]=>
  array(1) {
    ["foo3"]=>
    int(5)
  }
}

我想循环遍历所有非subdata1subdata2的参数,以便输出类似的内容:

foo is true
bar is Yes
baz is 99

保留发送到模板的数据结构很重要,所以我在管道的Twig侧寻找解决方案。

在过去的两天里,我浏览了稀疏的Twig文档,试图找到一个隐藏的宝石,揭示了如何做到这一点,但没有任何结果。

3 个答案:

答案 0 :(得分:2)

您需要为此创建自己的功能:

function get_other_context_vars($context)
{
    $vars = array();
    foreach ($context as $key => $value) {
        if (!$value instanceof Twig_Template && !in_array($key, array('subdata1', 'subdata2')) {
            $vars[$key] = $value;
        }
    }

    return $vars;
}

$environment->addFunction(new Twig_SimpleFunction('get_other_context_vars', 'get_other_context_vars', array('needs_context' => true)));

用法:

{% for name, var in get_other_context_vars() -%}
    {{ name }} is {{ var }}
{%- endfor %}

答案 1 :(得分:1)

我只是检查how the dump() helper works,然后在您的自定义扩展程序中复制类似的行为。

答案 2 :(得分:0)

您可以测试您的值是否为数组

{% for value in values %}
    {% if value[0] is not defined %}
        {{ value }}
    {% endif %}
{% endfor %}

如果您可以知道您的子数据的键,则此解决方案有效。 另一种解决方案是使用is_array函数在控制器中创建另一个数组来过滤