XSLT 1.0递归字符串替换函数返回空文档

时间:2016-11-07 17:34:21

标签: xml xslt

我以为我会在西班牙StackOverflow上回答question。问题涉及使用递归模板来处理XSLT 1.0中的字符串替换。我能够通过将参数参数括在单引号中来消除错误消息,但我仍然得到一个空白的输出结果。

这是XML:

<?xml version="1.0" encoding="UTF-8"?>
<document>
    <URL>[sitio]/PublishingImages/[nombreimagen].jpg</URL>
</document>

这是所需的输出:

<?xml version="1.0" encoding="UTF-8"?>
<document>
    <URL>[sitio]/PublishingImages/_t/[nombreimagen]_jpg.jpg</URL>
</document>

这是XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

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

    <xsl:template match="URL">
        <xsl:variable name="ImageUrl"><xsl:value-of select="URL"/></xsl:variable>
    <xsl:variable name="primerreplace">
        <xsl:call-template name="string-replace">
            <xsl:with-param name="text" select="$ImageUrl" />
            <xsl:with-param name="pattern" select="'PublishingImages'" />
            <xsl:with-param name="replace-with" select="'PublishingImages/_t'" />
        </xsl:call-template>
    </xsl:variable>                            
    <xsl:variable name="segundoreplace">
        <xsl:call-template name="string-replace">
            <xsl:with-param name="text" select="$primerreplace" />
            <xsl:with-param name="pattern" select="'.jpg'" />
            <xsl:with-param name="replace-with" select="'_jpg.jpg'" />
        </xsl:call-template>
    </xsl:variable> 
    <xsl:value-of select="$segundoreplace" />
    </xsl:template>

</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

您需要从此更改 img{ height:100%; width:100%; } 的变量声明...

ImageUrl

对此...

<xsl:variable name="ImageUrl"><xsl:value-of select="URL"/></xsl:variable>

或者更好的是,就是这个......

<xsl:variable name="ImageUrl"><xsl:value-of select="."/></xsl:variable>

这是因为您在匹配<xsl:variable name="ImageUrl" select="." /> 的模板中,因此URL正在寻找当前<xsl:value-of select="URL" />元素URL的子元素。