我在我的 Doctype 中添加了一个文本字符串属性“externalURL”。我想在文本字符串中输入外部 URL,并在导航中单击该链接时将该链接重定向到外部 URL。
但是以下方法不起作用:
<a>
<xsl:attribute name="href">
<xsl:choose>
<xsl:when test="string(externalUrl) != ''">
<xsl:value-of select="externalUrl" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="umbraco.library:NiceUrl(@id)" />
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:if test="descendant-or-self::*[@id = $currentPage/@id]">
<xsl:attribute name="class">current</xsl:attribute>
</xsl:if>
<xsl:value-of select="@nodeName" />
</a>
有人可以帮忙吗?