我想用XSLT插入和重命名父节点和兄弟节点的一些元素,但无法完成工作。
这是我的XML源:
<?xml version="1.0" encoding="UTF-16"?>
<file>
<student_id>163</student_id>
<report>
<final>false</final>
<period>1</period>
<year>2015</year>
<variant>
<type>Country</type>
<value>Netherlands</value>
</variant>
<grade>
<value>8</value>
<topic>french</topic>
</grade>
<grade>
<value>7</value>
<topic>dutch</topic>
</grade>
</report>
</file>
这是我想要的XML输出:
<?xml version="1.0" encoding="UTF-16"?><file>
<student_id>163</student_id>
<report>
<final>false</final>
<period>1</period>
<year>2015</year>
<variant>
<variant_type>Country</variant_type>
<variant_value>Netherlands</variant_value>
</variant>
<grade>
<student_id>163</student_id>
<final>false</final>
<period>1</period>
<year>2015</year>
<variant_type>Country</variant_type>
<variant_value>Netherlands</variant_value>
<value>8</value>
<topic>french</topic>
</grade>
<grade>
<student_id>163</student_id>
<final>false</final>
<period>1</period>
<year>2015</year>
<variant_type>Country</variant_type>
<variant_value>Netherlands</variant_value>
<value>7</value>
<topic>dutch</topic>
</grade>
</report>
</file>
请注意,file / student / variant下的类型和值应重命名为variant_type和variant_value,并复制到其兄弟级别。 Student_id,final,period和year也应复制到年级。
我试图通过使用以下XSLT实现此目的:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template><xsl:template match="variant/type">
<variant_type>
<xsl:apply-templates select="@* | node()"/>
</variant_type></xsl:template>
<xsl:template match="variant/value">
<variant_value>
<xsl:apply-templates select="@* | node()"/>
</variant_value></xsl:template>
<xsl:template match="grade">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:copy-of select="../../student_id"/>
<xsl:copy-of select="../final"/>
<xsl:copy-of select="../period"/>
<xsl:copy-of select="../year"/>
<xsl:copy-of select="../variant/variant_type"/>
<xsl:copy-of select="../variant/variant_value"/>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
上面的XSLT和变量/值被重命名..但没有插入等级中。仅包括student_id,final,period和year。谁能帮我吗?谢谢!
答案 0 :(得分:0)
问题在于匹配grade
的模板中的这些行:
<xsl:copy-of select="../variant/variant_type"/>
<xsl:copy-of select="../variant/variant_value"/>
您正在尝试复制元素../variant/variant_type
和../variant/variant_value
,但输入文件中不存在这些元素;如果您要复制您创建的重命名元素,则必须使用:
<xsl:apply-templates select="../variant/type"/>
<xsl:apply-templates select="../variant/value"/>
这样您就可以在输入文件中找到元素../variant/type
和../variant/value
,并应用您已定义的重命名逻辑。
答案 1 :(得分:0)
以这种方式尝试:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="variant/type">
<variant_type>
<xsl:apply-templates/>
</variant_type>
</xsl:template>
<xsl:template match="variant/value">
<variant_value>
<xsl:apply-templates/>
</variant_value>
</xsl:template>
<xsl:template match="grade">
<xsl:copy>
<xsl:copy-of select="../../student_id"/>
<xsl:copy-of select="../final"/>
<xsl:copy-of select="../period"/>
<xsl:copy-of select="../year"/>
<xsl:apply-templates select="../variant/*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
注意强>:
结果与您要求的结果略有不同,因为您的结果不是很好。