我正在使用Apache FOP和 见过:XSL - Escaping an apostrophe during xsl:when test 用于在xsl期间转义字符:when test。
但是,我在使用xsl:template match
执行相同的等效性测试时遇到问题示例XML
<?xml version="1.0" encoding="UTF-8"?>
<TASKLIST>
<STEP>
<STEP_ATTRIBUTE NAME="Step Name">tenants' A & A works</STEP_ATTRIBUTE>
</STEP>
<STEP>
<STEP_ATTRIBUTE NAME="Step Name">test</STEP_ATTRIBUTE>
</STEP>
</TASKLIST>
示例XSL
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:barcode="org.krysalis.barcode4j.xalan.BarcodeExt"
xmlns:xalan="http://xml.apache.org" exclude-result-prefixes="barcode xalan">
<xsl:variable name="apos">'</xsl:variable>
<xsl:variable name="amps">&</xsl:variable>
<xsl:template match="TASKLIST">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="simple"
page-width="21cm" page-height="29.7cm" margin-left="1cm"
margin-right="1cm">
<fo:region-body margin-top="0.5cm" />
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="simple">
<fo:flow flow-name="xsl-region-body">
<xsl:apply-templates/>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
<xsl:template match="STEP[STEP_ATTRIBUTE='Step Name'] = concat('tenants', $apos, ' A ', $amps, ' A works')">
<fo:block>
Template Match Equal
</fo:block>
</xsl:template>
<xsl:template match="STEP[STEP_ATTRIBUTE[@NAME='Step Name'] = 'test']">
<fo:block>
<xsl:choose>
<xsl:when test=".[@NAME='Data Name'] = concat('tenants', $apos, ' A ', $amps, ' A works')">
When Test Equal
</xsl:when>
<xsl:otherwise>
When Test NOT Equal
</xsl:otherwise>
</xsl:choose>
</fo:block>
</xsl:template>
<xsl:template match="STEP">
<fo:block>
Catch Non Template Match
</fo:block>
</xsl:template>
</xsl:stylesheet>
PDF输出:
Catch Non Template Match
When Test Equal
xsl:当测试成功时,模板:匹配失败。
如果有人能指出我正确的方向或向我展示我做错了什么,我会非常感激。
非常感谢提前
答案 0 :(得分:1)
您的match
属性必须match
一个节点,但您正在执行一个不返回节点的测试(但是布尔结果)。
您可以更改它以匹配节点,将表达式的第二部分放在测试当前节点的谓词中。也许这就是你想要的:
STEP[STEP_ATTRIBUTE='Step Name'][node() = concat('tenants', $apos, ' A ', $amps, ' A works')]