使用 Symfony 5/Twig 的嵌套数组问题 "Array to string conversion"

Nested Arrays Issue using Symfony 5/Twig "Array to string conversion"

我尝试使用 :

显示一个简单的 a link

Symfony\Component\DomCrawler\Crawler

Symfony\Component\Panther\Client

我需要提取 h2 > a 并将它们显示到 twig

在我的 class 控制器中:

$linkMetaInfo = [];
$crawler->filter('h2 a')->each(function (Crawler $node) use (&$linkMetaInfo) {

        $linkMetaInfo['link'][] = $node->attr('href');
        $linkMetaInfo['text'][] = $node->text();

    });
 return $linkMetaInfo;

路由控制器:

        return $this->render('home/display-meta.html.twig', [

        'linkMetaInfos' => $linkMetaInfos

        ]);

转储:

array:2 [▼
  "linkMetaInfos" => array:2 [▼
    "link" => array:27 [▼
      0 => "https://bootstrapmade.com/flexstart-bootstrap-startup-template/"
      1 => "https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/"
      2 => "https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/"
      3 => "https://bootstrapmade.com/free-bootstrap-template-corporate-moderna/"
      4 => "https://bootstrapmade.com/free-html-bootstrap-template-my-resume/"
      5 => "https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/"
      ]
    "text" => array:27 [▼
      0 => "FlexStart"
      1 => "Bootslander"
      2 => "Arsha"
      3 => "Moderna"
      4 => "MyResume"
      5 => "iPortfolio]
  ]
  "app" => Symfony\Bridge\Twig\AppVariable {#178 ▶}
]

在我的树枝视图中:

{% for linkMetaInfo  in linkMetaInfos %}
    
    <a href="{{ linkMetaInfos.link }}">{{ linkMetaInfos.text }}</a>

    {% endfor %}

如果我这样做:

{{ dump(linkMetaInfos.link) }}

{{ dump(linkMetaInfos.link) }}

一切都很好

但是当我尝试时:

<a href="{{ linkMetaInfos.link }}">{{ linkMetaInfos.text }}</a>

我收到这条消息:

渲染模板时抛出异常(“注意:数组到字符串的转换”)。

如果我尝试:

{{ dump(linkMetaInfo.text) }}

{{ dump(linkMetaInfo.link) }}

我收到这条消息:

键“link”对于键为“0、1、2、3、4、5、6、7、8、9、10、11、12、13”的数组, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26" 不存在。

有什么想法吗? 提前致谢

你说它是一个嵌套数组,所以你必须在嵌套数组内部循环,不是吗?

在下一个示例中,您在链接内循环,并与文本协调,但要注意长度相同...

{% for linkMetaInfo  in linkMetaInfos.link %}
     <a href="{{ linkMetaInfo }}">{{ linkMetaInfos.text[loop.index0] }}</a>
{% endfor %}