How to fix 'Errors were reported during stylesheet compilation' in XSLT?

前端 未结 1 535
执笔经年
执笔经年 2020-12-22 03:39

I have this SaxonApiException when I run my XSLT code on https://xslttest.appspot.com/. It return this error :

net.sf.saxon.s9api.SaxonApiException:

相关标签:
1条回答
  • 2020-12-22 04:00

    1. There should be <xsl:otherwise> instead of <otherwise>

    2. <xsl:sort> should be in <xsl:for-each> .(You have ended the loop in same line)

    3. To loop over Address, you will need xpath ../../Addresses/Address. Because at that time <Wage> is being processed. ( ../ will bring you up one level to parent node.)

    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    
        <xsl:template match="/EmployeeUDM_Response/Return/Employee">
            <xsl:for-each select="Wages/Wage">
                <xsl:choose>
                    <xsl:when test="DissimelarZipCode != ''">
                        <xsl:value-of select="DissimelarZipCode" />
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:for-each select="../../Addresses/Address">
                            <!-- year -->
                            <xsl:sort select="substring(StartDate, 1, 4)" order="descending"
                                data-type="number" />
                            <!-- month -->
                            <xsl:sort select="substring(StartDate, 6, 2)" order="descending"
                                data-type="number" />
                            <!-- day -->
                            <xsl:sort select="substring(StartDate, 9, 2)" order="descending"
                                data-type="number" />
                            <xsl:if test="position() = 1">
                                <xsl:value-of select="ZipCode" />
                            </xsl:if>
                        </xsl:for-each>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each>
        </xsl:template>
    
    </xsl:stylesheet>
    

    https://xsltfiddle.liberty-development.net/pPzifpP

    0 讨论(0)
提交回复
热议问题