TYPO3 流体获取@attributes
TYPO3 fluid get @attributes
我想从 xml 供稿中获取属性。
如果我 f:debug 流体中的数组,我可以将属性视为一个名为 @attributes:
的数组
array(6 items)
title => 'Test Title'
enclosure => array(1 item)
@attributes => array(3 items)
url => 'http://www.example.com/test.jpg' (55 chars)
length => '83423' (5 chars)
type => 'image/jpeg' (10 chars)
但无法使用此语法读取 url:
enclosure.@attributes.url
可能是@符号。
是否有 Viewhelper(也许是 VHS)或我可以用来读取数据的东西?
谢谢克里斯托夫。此解决方案有效:
<f:for each="{rss_news.enclosure}" as="item">
<img src="{item.url}" alt="">
</f:for>
我想从 xml 供稿中获取属性。 如果我 f:debug 流体中的数组,我可以将属性视为一个名为 @attributes:
的数组array(6 items)
title => 'Test Title'
enclosure => array(1 item)
@attributes => array(3 items)
url => 'http://www.example.com/test.jpg' (55 chars)
length => '83423' (5 chars)
type => 'image/jpeg' (10 chars)
但无法使用此语法读取 url:
enclosure.@attributes.url
可能是@符号。 是否有 Viewhelper(也许是 VHS)或我可以用来读取数据的东西?
谢谢克里斯托夫。此解决方案有效:
<f:for each="{rss_news.enclosure}" as="item">
<img src="{item.url}" alt="">
</f:for>