我是一个XML新手,我有一个问题,我有一个已经生成的XML文档,其中一些元素的属性列表是不完整的。我正在尝试实现一个XSLT样式表,它用一个主文档交叉引用它(所有属性都有缺省值),以便用缺省值填充任何缺失的属性。
例如,以以下不完整的XML文档为例:
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar label="two" index="2"/>
</foo>
bar元素缺少一个属性'type‘,我想根据’label‘的值从下面的主控文档中填充一个默认值:
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar label="one" index="1" type="type1"/>
<bar label="two" index="2" type="type2"/>
<bar label="three" index="3" type="type3"/>
</foo>
期望的结果将是:
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar label="two" index="2" type="type2"/>
</foo>
我的XSLT样式表尝试使用'document()‘和XPath的组合来实现这一点,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="master" select="document('master.xml')"/>
<!-- Template matching 'root' of XML document -->
<xsl:template match="/">
<xsl:apply-templates select="foo"/>
</xsl:template>
<!-- Template for generating 'foo' element -->
<xsl:template match="foo">
<foo>
<xsl:apply-templates select="bar"/>
</foo>
</xsl:template>
<!-- Template for generating 'bar' element -->
<xsl:template match="bar">
<bar label="{@label}" index="{@index}" type="{$master/foo/bar[@label=@label][1]/@type}"/>
</xsl:template>
</xsl:stylesheet>
然而,这不起作用,并为'bar‘元素提供了默认的'type’属性,其中'label‘为'one’,而不是'two':
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar label="two" index="2" type="type1"/>
</foo>
一些调查显示,XPath模式匹配所有的“bar”元素,而不仅仅是正确的元素,但我不确定为什么。
我做错了什么?有没有更好的方法?
发布于 2012-04-18 01:37:14
问题出在这一行
<bar label="{@label}" index="{@index}"
type="{$master/foo/bar[@label=@label][1]/@type}"/>
您实际上是在检查bar
元素的label
属性是否等于其本身--这等同于:
<bar label="{@label}" index="{@index}"
type="{$master/foo/bar[true()][2]/@type}"/>
,这等同于
<bar label="{@label}" index="{@index}"
type="{$master/foo/bar[1]/@type}"/>
这就是你观察到的结果是如何产生的。
XSLT Solution:使用 函数:
<bar label="{@label}" index="{@index}"
type="{$master/foo/bar[@label=current()/@label][4]/@type}"/>
完整的转换为(我已将URL更改为master.xml
,以便能够在本地计算机上运行转换):
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="master" select=
"document('file:///c:/temp/delete/master.xml')"/>
<!-- Template matching 'root' of XML document -->
<xsl:template match="/">
<xsl:apply-templates select="foo"/>
</xsl:template>
<!-- Template for generating 'foo' element -->
<xsl:template match="foo">
<foo>
<xsl:apply-templates select="bar"/>
</foo>
</xsl:template>
<!-- Template for generating 'bar' element -->
<xsl:template match="bar">
<bar label="{@label}" index="{@index}"
type="{$master/foo/bar[@label=current()/@label][5]/@type}"/>
</xsl:template>
</xsl:stylesheet>
XML以及何时在所提供的文档上应用此转换:
<foo>
<bar label="two" index="2"/>
</foo>
生成所需的正确结果::
<foo><bar label="two" index="2" type="type2"/></foo>
II.使用 可能更有效的解决方案
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:key name="kTypeByLabel" match="@type" use="../@label"/>
<xsl:variable name="master" select=
"document('file:///c:/temp/delete/master.xml')"/>
<!-- Template matching 'root' of XML document -->
<xsl:template match="/">
<xsl:apply-templates select="foo"/>
</xsl:template>
<!-- Template for generating 'foo' element -->
<xsl:template match="foo">
<foo>
<xsl:apply-templates select="bar"/>
</foo>
</xsl:template>
<!-- Template for generating 'bar' element -->
<xsl:template match="bar">
<xsl:variable name="vCurrent" select="."/>
<xsl:variable name="vDefault">
<xsl:for-each select="$master">
<xsl:value-of select=
"key('kTypeByLabel', $vCurrent/@label)"/>
</xsl:for-each>
</xsl:variable>
<bar label="{@label}" index="{@index}" type="{$vDefault}"/>
</xsl:template>
</xsl:stylesheet>
当对(相同)提供的XML文档(上面)应用此转换时,将生成所需的正确结果
<foo>
<bar label="two" index="2" type="type2"/>
</foo>
https://stackoverflow.com/questions/10197084
复制