如何在 Twig 中传递#text
How to pass #text in Twig
我对 Last.fm API & Twig 有疑问。我有这个数组,想要获取图像 URL,所以我将其放入我的 Twig 文件中:
{{ xxxx.image[0]['#text'] }}
这是我的数组:
Array
(
[0] => stdClass Object
(
[name] => David Bowie
[listeners] => 3091283
[mbid] => 5441c29d-3602-4898-b1a1-b77fa23b8e50
[url] => http://www.last.fm/music/David+Bowie
[streamable] => 0
[image] => Array
(
[0] => stdClass Object
(
[#text] => http://img2-ak.lst.fm/i/u/34s/937d62bb145040b9b709319c1e680037.png
[size] => small
)
但是我有这个 Twig 错误:
Impossible to access a key "#text" on an object of class "stdClass"
我该如何解决这个问题?
您可以按如下方式使用TWIG attribute function:
{{ attribute(xxxx.image[0], '#text') }}
希望对您有所帮助
我对 Last.fm API & Twig 有疑问。我有这个数组,想要获取图像 URL,所以我将其放入我的 Twig 文件中:
{{ xxxx.image[0]['#text'] }}
这是我的数组:
Array
(
[0] => stdClass Object
(
[name] => David Bowie
[listeners] => 3091283
[mbid] => 5441c29d-3602-4898-b1a1-b77fa23b8e50
[url] => http://www.last.fm/music/David+Bowie
[streamable] => 0
[image] => Array
(
[0] => stdClass Object
(
[#text] => http://img2-ak.lst.fm/i/u/34s/937d62bb145040b9b709319c1e680037.png
[size] => small
)
但是我有这个 Twig 错误:
Impossible to access a key "#text" on an object of class "stdClass"
我该如何解决这个问题?
您可以按如下方式使用TWIG attribute function:
{{ attribute(xxxx.image[0], '#text') }}
希望对您有所帮助