我是以下的XML。
<body>
<para>
<phrase>[1.001]</phrase> Arrest is for the pu</para>
<para>
<phrase>[1.002]</phrase> Brandon J said in
</para>
<para>
<phrase>[1.001]</phrase> Singapore used to be and is still
</para>
</body>
以下XSLT
<xsl:template name="para" match="para">
<xsl:apply-templates select="./node()[1][self::page]" mode="first"/>
<div>
<xsl:choose>
<xsl:when test="./@align">
<xsl:attribute name="class"><xsl:text>para align-</xsl:text><xsl:value-of select="./@align"/></xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="class"><xsl:text>para</xsl:text></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template name="phrase" match="phrase">
<span class="phrase">
<xsl:analyze-string select="." regex="\[([0-9]+)\.([0-9]+)\]">
<xsl:matching-substring>
<xsl:choose>
<xsl:when test="preceding::phrase[contains(., current())]">
<a name="{concat('CP',format-number(number(regex-group(1)),'0'),'-',format-number(number(regex-group(2)),'000'))}">
<xsl:value-of select="."/>
</a>
</xsl:when>
<xsl:otherwise>
<a name="{concat('P',format-number(number(regex-group(1)),'0'),'-',format-number(number(regex-group(2)),'000'))}">
<xsl:value-of select="."/>
</a>
</xsl:otherwise>
</xsl:choose>
<a name="{concat('P',format-number(number(regex-group(1)),'0'),'-',format-number(number(regex-group(2)),'000'))}">
</a>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
</xsl:analyze-string>
</span>
</xsl:template>
我在尝试将phrase
与preceding phrase
中的任何一个匹配,并且它给了我以下错误。
Error on line 41
XPTY0020: Required item type of the context item for the preceding axis is node();
supplied value has item type xs:string
此处我无法理解XPTY:0020
是什么,以及为什么会出现此错误。
请让我知道如何解决它。 这是working Demo 感谢
答案 0 :(得分:1)
您需要使用变量:
<xsl:template name="phrase" match="phrase">
<xsl:variable name="this-phrase" select="."/>
<span class="phrase">
<xsl:analyze-string select="." regex="\[([0-9]+)\.([0-9]+)\]">
<xsl:matching-substring>
<xsl:choose>
<xsl:when test="$this-phrase/preceding::phrase[contains(., current())]">
显然,使用current()
也可能不是您想要的,具体取决于您要比较的值。