0

.

你好很难解释...

如果您使用fluid styled content带有“文件链接”模块的 TYPO3 7.6 (w.),您可以上传单个文件,但您也可以使用“文件集合”在 sys 文件夹中组织您的下载。

存在三种不同类型的“文件集合”。1.Static selection of files和 2.Folder from Storrage和 3. Select by category.

现在您已经上传并编辑了带有新标题和描述的 FAL 文件(元数据,如下图)。例如,如果您使用的是单个下载或文件集合,这些字段{file.title}将与 (Uploads.html) 一起显示,但如果您使用的是!标题不会显示,你只看到..?fluid_styled_contentstatic selection of filesFolder from storrage{file.name}

我正在使用Uploads.html带有额外条件的标准格式 FSC。测试<f:debug>{file.title}</f:debug>,见下文。通过“来自存储的文件夹”的文件没有标题。

...
 <f:if condition="{file.title}">
    <f:then>
      {file.title} 
    </f:then>
    <f:else>
      {file.name} 
    </f:else>
</f:if>
...

它是一个错误还是一个功能TYPO3 8

我希望我的图片能更好地解释这种行为。

选择文件集合

在前端显示具有流畅样式内容 FSC 的文件集合

插入标题 (FAL)

f:调试文件.title

4

1 回答 1

1

有一个TYPO3 核心错误,但现在已修复 ( TYPO3 7.6.15) - 更新核心和Fluid Styled Content-Template Uploads.html

第 26 行

<a href="{file.publicUrl}"{f:if(condition:data.target,then:' target="{data.target}"')}>
  <span class="ce-uploads-fileName">
    <f:if condition="{file.properties.title}">
    <f:then>
        {file.properties.title}
    </f:then>
    <f:else>
        {file.name}
    </f:else>
    </f:if>
  </span>
</a>

感谢TYPO3核心开发团队!见修订

于 2017-03-22T13:55:42.280 回答