我刚刚开始使用XLS转换 - 我想使用它们以便在我的项目中添加额外的抽象层。 我想使用转换将水晶报表生成的xml文件转换为另一个xml,简化为我的项目(因此将来,当文件架构发生变化时,我只需要更改我的xsl文件)。
所以我输入的xml文件如下所示:
<CrystalReport xmlns="urn:crystal-reports:schemas:report-detail"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:crystal-reports:schemas:report-detail http://www.businessobjects.com/products/xml/CR2008Schema.xsd">
<Group Level="1">
<GroupHeader>
<Section SectionNumber="0">
<Field Name="Field4" FieldName="{@PartIndex}"><FormattedValue>Part Number</FormattedValue><Value>51-01672</Value></Field>
</Section>
<Section SectionNumber="1">
<Text Name="Text28"><TextValue>Part Description</TextValue>
</Text>
</Section>
<Section SectionNumber="2">
<Text Name="Text21"><TextValue>Part Description 2</TextValue>
</Text>
</Section>
<Section SectionNumber="3">
</Section>
...
这只是其中的一部分。我应该提到的是,GroupHeader节点不会在Group节点内重复。
所以我做了一些早期的xsl定义(为了测试):
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:t="urn:crystal-reports:schemas:report-detail"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:crystal-reports:schemas:report-detail http://www.businessobjects.com/products/xml/CR2008Schema.xsd">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/t:CrystalReport">
<ToolsUsage>
<xsl:value-of select="t:Group[1]/@Level"/>
</ToolsUsage>
</xsl:template>
</xsl:stylesheet>
我使用lxml Python lib来测试它。 正如预期的那样返回以下代码:
<ToolsUsage xmlns:t="urn:crystal-reports:schemas:report-detail" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">1</ToolsUsage>
到目前为止,非常好(Level属性等于&#34; 1&#34;对于第一个组节点)。但我无法继续前进。 就像,我试图获得Field节点的Value内部文本(第一部分出现):
<xsl:value-of select="t:Group[1]/GroupHeader/Section[1]/Field/Value"/>
但我没有得到任何东西(因此在节点中)。我试图获得一个SectionNumber属性,也没有结果。我甚至使用xml路径工具来提取精确的xpath查询,但似乎查询是正确的。我相信它是非常基本的东西,但是没有找到什么。
答案 0 :(得分:2)
给定<CrystalReport xmlns="urn:crystal-reports:schemas:report-detail">...</CrystalReport>
,所有后代元素都在命名空间中,因此您的路径需要在所有元素上使用前缀,例如t:Group[1]/t:GroupHeader/t:Section[1]/t:Field/t:Value
。