我想从基于文件夹的文件集合中访问文件和关联的元数据,但调试说 metaDataLoaded=false 并且 metaDataProperties 是空的。
这是来自我的 DCE 的代码流畅代码:
{namespace dce=ArminVieweg\Dce\ViewHelpers}
<f:layout name="Default" />
<f:section name="main">
<f:for each="{field.fileCollection}" as="collection">
<f:debug>{collection}</f:debug>
<f:for each="{collection.items}" as="item">
<f:format.html>{item.name}</f:format.html>
<f:debug>{item.metaDataProperties}</f:debug>
</f:for>
</f:for>
</f:section>
为什么没有加载元数据?如何访问文件的元数据?
提前谢谢,
简