我有以下2个XML文件。
Title.XML
<?xml version="1.0" encoding="UTF-8"?>
<entry>
<file name="LCCPMY_CH_01.xml"></file>
</entry>
Contents.xml
<toc-pg>1</toc-pg>
LCCPMY_CH_01.xml 的内容如下。
<chapter num="A">
<section level="sect1">
<page num="1"/>
<title>
<content-style font-style="bold">Chapter 1: This is Chapter</content-style>
</title>
</section>
</chapter>
这里我尝试做的是来自Content.xml文件,通过使用Title.xml文件的帮助,我试图匹配数字(page num of LCCPMY_CH_01.xml is equal to Contents.xml toc-pg value
)。我使用下面的XSLT来做它。
<xsl:template match="toc-pg" mode="x">
<xsl:variable name="dot" select="."/>
<xsl:analyze-string select="." regex="([0-9]+)">
<xsl:matching-substring>
<xsl:variable name="prent">
<xsl:for-each select="document('C:\Users\u0138039\Desktop\Proview\MY\2014\The Law of Costs in Civil Proceedings\title.xml')/entry/file">
<xsl:value-of select="normalize-space(document(concat('C:\Users\u0138039\Desktop\Proview\MY\2014\The Law of Costs in Civil Proceedings\',./@name))/chapter/section[@level='sect1']/substring-after(fn:substring-before(.,':'),' ')[//page/@num=regex-group(1)]|a[//page/@num=regex-group(1)])"/>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="cha">
<xsl:value-of select="$prent"/>
</xsl:variable>
<xsl:variable name="size">
<xsl:value-of select="string-length($cha)"/>
</xsl:variable>
<xsl:variable name="conct">
<xsl:choose>
<xsl:when test="$size>'1'">
<xsl:value-of select="concat('er:#LCCPMY_CH_',$cha,'/pg_',.)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat('er:#LCCPMY_CH_0',$cha,'/pg_',.)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<a href="{$conct}">
<xsl:value-of select="regex-group(1)"/>
</a>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:template>
但是当我正在运行此操作时,我会收到以下异常。
XSLT 2.0 Debugging Error: Error: file:///C:/Users/u0138039/Desktop/Proview/MY/2014/The%20Law%20of%20Costs%20in%20Civil%20Proceedings/09172014/XSLT/MCCL_TOC_01.xsl:235: Not a node item - item has type xs:string with value '1' - Details: - XPTY0020: The context item in an axis step must be a node
请让我知道我哪里出错了,我该如何解决这个问题。我使用的是XSLT 2.0。
由于
答案 0 :(得分:1)
正如评论中所提到的,问题在于这一行:
<xsl:value-of select="normalize-space(document(concat('C:\Users\u0138039\Desktop\Proview\MY\2014\The Law of Costs in Civil Proceedings\',./@name))/chapter/section[@level='sect1']/substring-after(fn:substring-before(.,':'),' ')[//page/@num=regex-group(1)]|a[//page/@num=regex-group(1)])"/>
为了更清楚地表明这一点,我们暂时假设document
调用已存储在变量$doc-lccpmy
中。然后,通过一些缩进,它看起来像这样:
<xsl:value-of select="
normalize-space(
$doc-lccpmy/chapter/section[@level='sect1']/substring-after(substring-before(.,':'),' ')[//page/@num=regex-group(1)]
|
a[//page/@num=regex-group(1)]
)"/>
这有几个问题。首先,正如MartinHonnen在评论中指出的那样,当上下文应该是一个节点时,你试图将表达式[//page/@num=regex-group(1)]
应用于一个字符串。要解决这个问题,表达式的第一部分应该(可能)是这个
$doc-lccpmy/chapter/section[@level='sect1'][page/@num=regex-group(1)]/substring-after(substring-before(.,':'),' ')
还没有删除//
以使其相对于section
元素的方式。
另一个问题是使用|
作为联合运算符(它不是&#39;或&#39;运算符)。
$doc-lccpmy/... | a[//page/@num=regex-group(1)]
通过在您正在使用它的位置使用它,您将返回两个节点集的并集,以返回一系列节点,并且不允许序列作为normalize-space
函数的参数
不幸的是,因为你的XML示例没有a
元素,所以不清楚究竟需要做些什么来修复它,但它可能需要看起来像这样
$doc-lccpmy/chapter/section[@level='sect1'][page/@num=regex-group(1) or a/page/@num=regex-group(1)]/substring-after(substring-before(.,':'),' ')
或者,从长篇大论来看,试试这个:
<xsl:value-of select="normalize-space(document(concat('C:\Users\u0138039\Desktop\Proview\MY\2014\The Law of Costs in Civil Proceedings\',./@name))/chapter/section[@level='sect1'][page/@num=regex-group(1) or a/page/@num=regex-group(1)]/substring-after(substring-before(.,':'),' '))"/>
或许这个:
<xsl:value-of select="normalize-space(substring-after(substring-before(document(concat('C:\Users\u0138039\Desktop\Proview\MY\2014\The Law of Costs in Civil Proceedings\',./@name))/chapter/section[@level='sect1'][page/@num=regex-group(1) or a/page/@num=regex-group(1)],':'),' '))"/>