我想知道如果符合某些条件,如何使用XSLT将节点上移一级.举个例子来看看下面的
XML源代码:
<Settings> <String [...]> <Boolean [...]/> </String> </Settings>
这就是我作为起始情况的XML.需要说明的是,节点名称“Settings”,“String”,“Boolean”是我们定义的特殊节点.
问题是“String”节点内不允许使用“布尔”节点.这就是为什么我必须在水平上移动那些“布尔”节点.所需的XML如下所示:
<Settings> <String [...]></String> <Boolean [...]/> </Settings>
无论XML树中的位置如何,XSLT还必须处理具有兄弟布尔节点的每个String节点.
到目前为止,我了解到您必须首先使用“身份规则”复制所有XML,然后对所需的转换应用一些特殊规则:
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions"> <!-- Identity rule --> <xsl:template match="node() | @*"> <xsl:copy> <xsl:apply-templates select="node() | @*"/> </xsl:copy> </xsl:template> <!-- special rules ... --> </xsl:stylesheet>
我正在努力的事情是将所有“布尔”节点移动到一个级别的“字符串”节点的兄弟节点的规则.我怎样才能做到这一点?!?
我对要求的解释给出了解决方案
原文链接:https://www.f2er.com/xml/292661.html<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes"/> <xsl:template match="node() | @*"> <xsl:copy> <xsl:apply-templates select="node() | @*"/> </xsl:copy> </xsl:template> <xsl:template match="String"> <xsl:copy> <xsl:apply-templates select="child::node()[not(self::Boolean)]"/> </xsl:copy> <xsl:apply-templates select="Boolean"/> </xsl:template> </xsl:stylesheet>