0

我将尝试使用 DCE(动态内容元素)设计我自己的内容元素。当我尝试使用图像时,我遇到了问题。我为图像创建了一个选择字段,效果很好。在流体模板中,我有以下用于处理图像的代码:

<f:image src="{field.image}" alt="" treatIdAsReference="1" />

但是如果我尝试插入内容元素,Typo3 会抛出这个异常:

Oops, an error occurred!

No file usage (sys_file_reference) found for given UID.

More information regarding this error might be available online.

我已经发现,这肯定是 Typo3 中的一个错误,但我该如何修复它呢?

4

3 回答 3

1

知道了。使用提示形式vijay rami我发现,您必须像这样在 dce 中渲染图像:

<f:for each="{dce:fal(field:'image', contentObject:contentObject)}" as="fileReference" iteration="iterator">
    <f:if condition="{iterator.isFirst}">
        <f:image src="{fileReference.uid}" alt="" treatIdAsReference="1" />
    </f:if>
</f:for>

当然,你必须在第一行“field:'image'”中编辑你的名字。

于 2015-02-24T09:20:46.263 回答
1

检查本教程并进行相应设置。http://docs.typo3.org/typo3cms/extensions/dce/Tutorial/Index.html 您的问题可能会解决...!!

于 2015-02-17T18:18:32.443 回答
1

对于模板,请使用以下代码:

<f:for each="{dce:fal(field:'fal', contentObject:contentObject)}" as="fileReference" iteration="iterator">
    <f:if condition="{iterator.isFirst}">
        <f:image src="{fileReference.uid}" alt="" treatIdAsReference="1" />
    </f:if>
</f:for>

注意field:'fal'不是您设置的变量名称,它是变量名称下方配置的一部分:

...
<foreign_match_fields>
    <fieldname>fal</fieldname> <!-- Name of variable! -->
</foreign_match_fields>
...
于 2015-07-29T10:41:27.497 回答