我正在处理此处理指令:<?Pub _kern Amount="-25pt"?>
带有:
<xsl:template match="processing-instruction('Pub')">
<xsl:choose>
<xsl:when test="starts-with(., '_kern')">
<xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
但这只适用于PI位于<div>
等容器元素内的情况。我收到一个错误,因为XSLT试图向不存在的父元素添加样式标记。如果在<xsl:attribute name="style">
之前包含<span>
,那么当PI位于容器元素内时,代码就不起作用。如何检测是否存在容器元素,以便知道是否添加跨度?除非有更好的方法,否则我是XSLT的初学者。
这很有效,如果没有@Tim C的帮助,我是不会得到的:
<xsl:template match="processing-instruction('Pub')">
<xsl:choose>
<xsl:when test="starts-with(., '_kern') and processing-instruction()[parent::*]">
<xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="starts-with(., '_kern')">
<span><xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute></span>
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</xsl:template>
这可能并不完全正确,但它完成了任务。
您可以通过添加一个简单的条件来检查处理指令是否有父元素
<xsl:template match="processing-instruction('Pub')[parent::*]">
不过,如果您的XML看起来像这样,请小心:
<div>
<?Pub _kern Amount="-25pt"?>
</div>
如果首先匹配并复制了空白文本节点,则仍可能出现错误。您可能需要在XSLT中包含xsl:strip-space
命令。
例如,这会得到一个错误
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="processing-instruction('Pub')[parent::*]">
<xsl:choose>
<xsl:when test="starts-with(., '_kern')">
<xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
但事实并非如此。。。。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:strip-space elements="*" />
<xsl:template match="processing-instruction('Pub')[parent::*]">
<xsl:choose>
<xsl:when test="starts-with(., '_kern')">
<xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
编辑:作为对您评论的回应,即使使用xsl:strip-space
,如果在处理指令之前有前一个同级,您仍然会收到错误
<div>
<text></text>
<?Pub _kern Amount="-25pt"?>
</div>
这是因为如果父元素已经有子节点输出,则无法将属性添加到该父元素。
如果目的是尝试在可能的情况下将属性添加到父级,但如果不创建跨度标记,则可以将与处理指令匹配的模板格式更改为:
<xsl:template match="processing-instruction('Pub')">
<xsl:choose>
<xsl:when test="not(parent::*) or preceding-sibling::node()">
<span>
<!-- Add attribute -->
</span>
</xsl:when>
<xsl:otherwise>
<!-- Add attribute -->
</xsl:otherwise>
</xsl:choose>
</xsl:template>
属性的添加可以在模板中完成,以避免重复编码。试试这个XSLT:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:strip-space elements="*" />
<xsl:template match="processing-instruction('Pub')">
<xsl:choose>
<xsl:when test="not(parent::*) or preceding-sibling::node()">
<span>
<xsl:call-template name="processing-instruction"/>
</span>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="processing-instruction"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="processing-instruction">
<xsl:choose>
<xsl:when test="starts-with(., '_kern')">
<xsl:attribute name="style"><xsl:text>padding-left: </xsl:text>
<xsl:value-of select="if (contains(.,'Amount')) then (substring-before(substring-after(., 'Amount="'), '"')) else '12pt'"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>