我在 TYPO3 Neos 1.2.1 中创建了一个带有链接字段的自定义节点类型。当我将属性值传递给模板并尝试将其呈现为链接时,会抛出一个 execption:
Paths must not contain two consecutive slashes.
链接属性值为 »node://c969f0d4-2e01-87b9-25a8-6079c5a292fe«。我已阅读,该链接必须先转换为 URI。但是,建议的处理器对我的站点没有影响。
打字稿2
prototype(Acme.MySitePackage:Teaser) < prototype(TYPO3.Neos:Content) {
templatePath = 'resource://Acme.MySitePackage/Private/Templates/NodeTypes/Teaser.html'
title = ${q(node).property('title')}
text = ${q(node).property('text')}
image = ${q(node).property('image')}
link = ${q(node).property('link')}
link.@process.convertUris = TYPO3.Neos:ConvertUris {
#forceConversion = true
}
}
流体模板
<f:debug>{link}</f:debug>
<neos:link.node node="{link}" />