我有一个.xsl
这样的文件:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:exslt="http://exslt.org/common">
<xsl:template match="/>
<fo:root>
<fo:block>...</fo:block>
</fo:root>
</xsl:template>
</xsl:stylesheet>
如何使用模板匹配和设置生成的fo
元素的样式?例如,如果我想给我的fo:table-cell
红色背景,我希望能够做到
<xsl:template match="fo:table-cell">
<xsl:attribute name="background-color">red</xsl:attribute>
</xsl:template>
我找到了this,然后尝试了一些
的内容 <xsl:template match="/>
<xsl:variable name="foRoot">
<fo:root>
<fo:block>...</fo:block>
</fo:root>
</xsl:variable>
<xsl:apply-templates select="exslt:node-set($foRoot)" />
</xsl:template>
但由于无休止的递归,这会导致堆栈溢出。当我试图避免这种情况时,例如通过
<xsl:apply-templates select="exslt:node-set($foRoot)/*" />
我收到一份空文件。尝试通过添加
来修复 时<xsl:copy-of select="$foRoot" />
之后,我没有得到任何错误,但表格单元格仍然有默认的白色背景。
答案 0 :(得分:1)
如果你真的使用的是XSLT 2处理器,那么首先你不需要exsl:node-set
。
至于你的模板
<xsl:template match="fo:table-cell">
<xsl:attribute name="background-color">red</xsl:attribute>
</xsl:template>
匹配FO table-cell
但将其转换为属性。所以你想要
<xsl:template match="fo:table-cell">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:attribute name="background-color">red</xsl:attribute>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
因为它将属性添加到元素的浅副本,然后使apply-templates
的子元素保持处理活动。
当然,您还需要添加身份转换模板
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
确保复制您不想更改的元素。如果其他模板干扰了身份转换,则可能需要使用模式来分离处理步骤。