有人可以帮我解决下面的转变吗?
这是输入xml:
<?xml version="1.0" encoding="UTF-8"?>
<book>
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author>
<name>Smith</name>
</author>
<author>
<name>Wallace</name>
</author>
<author>
<name>Brown</name>
</author>
</book>
<book>
<title>Other book</title>
<pages>100</pages>
<size>small</size>
<author>King</author>
</book>
<book>
<title>Pretty book</title>
<pages>150</pages>
<size>medium</size>
</book>
这是所需的输出
<book style="even">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Smith</author-name>
</book>
<book style="odd">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Wallace</author-name>
</book>
<book style="even">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Brown</author-name>
</book>
<book style="odd" >
<title>Other book</title>
<pages>100</pages>
<size>small</size>
<author-name>King</author-name>
</book>
<book style="even">
<title>Pretty book</title>
<pages>150</pages>
<size>medium</size>
<author-name />
</book>
我尝试使用xsl:for-each
循环,但我想他们让我陷入了死胡同。这里棘手的部分是“风格”属性,无论在任何书中放置多少作者标签,它都需要“全局”。
答案 0 :(得分:7)
这个简单,纯粹的XSLT 1.0转换(没有条件,没有xsl:for-each
,没有参数传递,没有xsl:element
,没有使用臭名昭着的低效//
):
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:my="my:my" exclude-result-prefixes="my" >
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<my:names>
<n>odd</n>
<n>even</n>
</my:names>
<xsl:variable name="vStyles"
select="document('')/*/my:names/*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="book/author">
<xsl:variable name="vPos">
<xsl:number level="any" count="book/author|book[not(author)]"/>
</xsl:variable>
<book style="{$vStyles[$vPos mod 2 +1]}">
<xsl:copy-of select="@*|../node()[not(self::author)]"/>
<author-name>
<xsl:value-of select="normalize-space()"/>
</author-name>
</book>
</xsl:template>
<xsl:template match="book[author]">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="book[not(author)]">
<xsl:variable name="vPos">
<xsl:number level="any" count="book/author|book[not(author)]"/>
</xsl:variable>
<book style="{$vStyles[$vPos mod 2 +1]}">
<xsl:copy-of select="@*|node()"/>
<author-name/>
</book>
</xsl:template>
<xsl:template match="book[author]/*[not(self::author)]"/>
</xsl:stylesheet>
应用于此XML文档(提供的文档包含在单个顶部元素中):
<t>
<book>
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author>
<name>Smith</name>
</author>
<author>
<name>Wallace</name>
</author>
<author>
<name>Brown</name>
</author>
</book>
<book>
<title>Other book</title>
<pages>100</pages>
<size>small</size>
<author>King</author>
</book>
<book>
<title>Pretty book</title>
<pages>150</pages>
<size>medium</size>
</book>
</t>
产生完全正确的结果:
<t>
<book style="even">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Smith</author-name>
</book>
<book style="odd">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Wallace</author-name>
</book>
<book style="even">
<title>My book</title>
<pages>200</pages>
<size>big</size>
<author-name>Brown</author-name>
</book>
<book style="odd">
<title>Other book</title>
<pages>100</pages>
<size>small</size>
<author-name>King</author-name>
</book>
<book style="even">
<title>Pretty book</title>
<pages>150</pages>
<size>medium</size>
<author-name/>
</book>
</t>
解释:正确使用 xsl:number
和模板/模式匹配。
答案 1 :(得分:1)
此样式表首先存储所有作者节点以及全局变量中没有作者的所有书籍节点。 “/”。按文档顺序对它们进行排序。然后主模板遍历此变量中的所有节点,并根据序列中的位置生成输出。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:variable name="authors" select="(//author | //book[not(author)])/."/>
<xsl:template match="/">
<xsl:element name="result">
<xsl:for-each select="$authors">
<xsl:apply-templates select=".">
<xsl:with-param name="position" select="position()+1"/>
</xsl:apply-templates>
</xsl:for-each>
</xsl:element>
</xsl:template>
<xsl:template match="text()|title|pages|size">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="book">
<xsl:param name="position" select="1"/>
<xsl:element name="book">
<xsl:attribute name="style">
<xsl:if test="$position mod 2 = 0">even</xsl:if>
<xsl:if test="$position mod 2 = 1">odd</xsl:if>
</xsl:attribute>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="pages"/>
<xsl:apply-templates select="size"/>
<xsl:element name="author-name"/>
</xsl:element>
</xsl:template>
<xsl:template match="author">
<xsl:param name="position" select="1"/>
<xsl:element name="book">
<xsl:attribute name="style">
<xsl:if test="$position mod 2 = 0">even</xsl:if>
<xsl:if test="$position mod 2 = 1">odd</xsl:if>
</xsl:attribute>
<xsl:apply-templates select="../title"/>
<xsl:apply-templates select="../pages"/>
<xsl:apply-templates select="../size"/>
<xsl:element name="author-name">
<xsl:if test="name">
<xsl:value-of select="name"/>
</xsl:if>
<xsl:if test="not(name)">
<xsl:value-of select="."/>
</xsl:if>
</xsl:element>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
答案 2 :(得分:0)
(修订版)
<xsl:for-each "//author | /book[not(author)]" />
<xsl:variable name="style" select="('even','odd')[(position() mod 2) + 1]" />
<xsl:apply-templates select="."><xsl:with-param name="style" select="$style" /></xsl:apply-templates>
</xsl:for-each>
然后在您的作者模板中,您可以使用..
构建图书元素