3

我正在编写一个需要为 xml 站点地图输出有效 xml 文件的 XSLT 模板。

<url>
<loc>
    <xsl:value-of select="umbraco.library:NiceUrl($node/@id)"/>
</loc>
<lastmod>
    <xsl:value-of select="concat($node/@updateDate,'+00:00')"/>
</lastmod>
</url>

不幸的是,输出的 URL 包含一个撇号 - /what's-new.aspx

我需要&apos;为谷歌站点地图转义 ' 。不幸的是,我尝试过的每次尝试都将字符串 ' &apos;' 视为无效的 ''' - 令人沮丧。XSLT 有时会让我发疯。

对技术有什么想法吗?(假设我可以找到 XSLT 1.0 模板和函数的方法)

4

4 回答 4

9

所以你有'你的输入,但你需要输出中的字符串&nbsp;

在您的 XSL 文件中,使用此查找/替换实现替换&apos;为(除非您使用的是 XSLT 2.0):&amp;apos;

<xsl:template name="string-replace-all">
  <xsl:param name="text"/>
  <xsl:param name="replace"/>
  <xsl:param name="by"/>
  <xsl:choose>
    <xsl:when test="contains($text,$replace)">
      <xsl:value-of select="substring-before($text,$replace)"/>
      <xsl:value-of select="$by"/>
      <xsl:call-template name="string-replace-all">
        <xsl:with-param name="text" select="substring-after($text,$replace)"/>
        <xsl:with-param name="replace" select="$replace"/>
        <xsl:with-param name="by" select="$by"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$text"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

这样称呼它:

<loc>
  <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text" select="umbraco.library:NiceUrl($node/@id)"/>
    <xsl:with-param name="replace" select="&apos;"/>
    <xsl:with-param name="by" select="&amp;apos;"/>
  </xsl:call-template>
</loc>

XSL将问题&apos;解释为'. &amp;apos;将被解释为&apos;

于 2009-07-09T11:38:45.037 回答
1

从 URL 中删除不需要的字符的简单方法是更改​​ umbraco 在生成 NiceUrl 时使用的规则。

编辑 config/umbracoSettings.config

添加一条规则以从 NiceUrls 中删除所有撇号,如下所示:

<urlReplacing>
    ...
    <char org="'"></char>     <!-- replace ' with nothing -->
    ...
</urlReplacing>

注意:“org”属性的内容被替换为元素的内容,这是另一个例子:

<char org="+">plus</char> <!-- replace + with the word plus -->
于 2009-07-09T22:22:37.673 回答
0

您是否尝试将xsl:value-of 元素的 disable-output-escaping设置为 yes:

<xsl:value-of disable-output-escaping="yes" select="umbraco.library:NiceUrl($node/@id)"/>

实际上 - 这可能与您想要的相反。

将 xsl:value-of 包装在 xsl:text 元素中怎么样?

<xsl:text><xsl:value-of select="umbraco.library:NiceUrl($node/@id)"/></xsl:text>

也许你应该尝试翻译'&amp;apos;

于 2009-07-09T11:11:57.010 回答
0

这将起作用,您只需要更改两个参数,如下所示

<xsl:with-param name="replace">&apos;</xsl:with-param>
<xsl:with-param name="by" >AnyString</xsl:with-param>
于 2012-04-12T09:53:21.773 回答