我有一个输入XML,如下所示。
<?xml version="1.0" encoding="UTF-8"?>
<topic title="My Topic" subtopic="My SubTopic">
<table title="My Table" media="print" role="center">
<thead></thead>
<tbody></tbody>
</table>
</topic>
我希望用XSL翻译如下。
<?xml version="1.0" encoding="UTF-8"?>
<topic title="My Topic" subtitle="My Subtopic">
<table title="My Table" outputclass="print center">
<thead></thead>
<tbody></tbody>
</table>
</topic>
如果您发现表的任何其他属性必须在名为 outputclass 的一个属性中连接,但只有该表的其他属性不属于该主题。
我有一个像这样的XSL -
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="xsl xsi">
<xsl:output method="xml" indent="yes" omit-xml-declaration="no"
standalone="no" doctype-public="-//OASIS//DTD DITA Composite//EN" doctype-system="topic.dtd"/>
<!-- Generic element -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="table">
<table>
<xsl:apply-templates select="@role | @media" mode="table.att"/>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates />
</table>
</xsl:template>
<xsl:template match="@*">
<xsl:if test="local-name(.)!='noNamespaceSchemaLocation'">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="@*" mode="table.att">
<xsl:choose>
<xsl:when test="local-name() = 'role'">
<xsl:attribute name="outputclass">
<xsl:value-of select="."></xsl:value-of>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<!-- <xsl:apply-templates select="."/> -->
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
正如预期的那样,它并没有成功。你能帮我解决这个问题。 我想我需要将所有属性一起发送以便连接它,但我不知道该怎么做。
答案 0 :(得分:1)
试试这个
<xsl:template match="table">
<table>
<xsl:apply-templates select="@title"/>
<xsl:if test="@role and @media">
<xsl:attribute name="outputclass">
<xsl:value-of select="concat(@media, ' ', @role)"/>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates />
</table>
</xsl:template>
答案 1 :(得分:0)
表的任何其他属性必须在名为 outputclass 的一个属性中连接,但只有该表的其他属性不属于该主题。
以这种方式尝试:
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="table">
<xsl:copy>
<xsl:copy-of select="@title"/>
<xsl:attribute name="outputclass">
<xsl:for-each select="@*[not(name()='title')]">
<xsl:value-of select="." />
<xsl:if test="position()!=last()">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>