4

我正在尝试在 render xslt 中检索多媒体组件的 URL,但它仍然失败。

我可以拿起 tcm URI。有没有办法从中获取 URL?

我尝试使用 tcmse:PublishBinary 函数,但失败并出现错误“命名空间'http://www.tridion.com/ContentManager/5.1/TcmScriptAssistant'不包含任何函数。”

<table cellspacing="0px" cellpadding="0px" style="border: 0; padding: 0px; width: 100%"> 
    <xsl:for-each select="twf:items/twf:item">
        <tr>
            <td colspan="2">
                <!-- <xsl:value-of select="twf:webformscomponentlink/@xlink:href" /> -->
                <!-- <xsl:value-of select="tcmse:PublishBinary(string(twf:webformscomponentlink/@xlink:href))" /> -->
                <span>
                    <xsl:call-template name="replace-new-lines">
                        <xsl:with-param name="string">
                            <xsl:value-of select="twf:linklabel" />
                        </xsl:with-param>
                    </xsl:call-template>
                    <xsl:text> </xsl:text>
                </span>
                <xsl:element name="a">
                    <xsl:attribute name="href">
                        <xsl:choose>
                            <xsl:when test="twf:webformscomponentlink/@xlink:href">
                                <xsl:value-of select="twf:webformscomponentlink/@xlink:href" /> 
                            </xsl:when>
                            <xsl:otherwise>#</xsl:otherwise>
                        </xsl:choose>
                    </xsl:attribute>
                    <xsl:value-of select="twf:linktext" />
                </xsl:element>    
            </td>
        </tr>
    </xsl:for-each>
</table> 

非常感谢

4

1 回答 1

1

您提到您正在尝试在 Render XSLT 中解析多媒体组件,并且在您的标签中我看到了 WebForms,所以我假设它是 SDL Tridion WebForms 组件模板的 Render XSLT。

WebForm 是一个动态组件表示,它的组件模板使用两个 XSLT,一个在 Source 选项卡(Expand XSLT)中,它在 Publish 时执行,此时 Publisher 在 CMS 上呈现模板代码。动态模板是另一个,它包含一个 XSLT,它在发布时被原样复制到 Content Broker。在您的 WebForms 组件展示请求时,动态模板用于将 Expand XML 转换为您的 WebForm。

因此,因为动态模板是在请求时执行的,所以此时 TcmScriptAssistant 不再可用(它仅在发布时存在于内容管理器端)。解决方案是解析扩展模板中的多媒体组件,使用tcmse:PublishBinary(), 在渲染模板中您只能转换/显示扩展模板的结果,但此时您无法访问 CM 功能。

于 2012-11-29T11:39:45.417 回答