0

我想从基于文件夹的文件集合中访问文件和关联的元数据,但调试说 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>

为什么没有加载元数据?如何访问文件的元数据?

提前谢谢,

4

1 回答 1

1

在那里使用properties图像和元数据的所有属性合并在一起。

<f:debug>{item.properties}</f:debug>

于 2017-09-07T10:15:04.507 回答