我有一个xsl文件,其中包含一些xPath。。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes" encoding="UTF-8"/>
<xsl:variable name="ref_num" select="ABCD"/>
<xsl:template match="holiday">
<fromPrice>
<xsl:copy-of select="document('/file/to/path/in/documents/FILE1.xml',/)/dataroot/Tour/RefNo[.='ABHC']/preceding-sibling::AXL "/>
</fromPrice>
</xsl:template>
</xsl:stylesheet>
场景
xml文件从FILE1.xml
(其中的值来自<AXL>
元素)文件正确返回<fromPrice>
值,如下所示:
FILE1.xml
<Tour>
<Allocation>0</Allocation>
<Available>16</Available>
<AXL>4658</AXL>
<ALO>2195</ALO>
<RefNo>AABC</RefNo>
</Tour>
<Tour>
<Allocation>0</Allocation>
<Available>16</Available>
<AXL>1295</AXL>
<ALO>595</ALO>
<RefNo>ATSS</RefNo>
</Tour>
问题:
我希望在"/RefNo[.='ABHC']"
的xPath中传递$ref_num
,以便RefNo
包含变量$ref_num
的值ABCD
。这样,如果$ref_num
发生更改,我就不必再次在"/RefNo[.='ABHC']"
处对xPath进行硬编码
到目前为止,我尝试了以下操作:
*/RefNo[.=' "+$ref_num+ "']
,但没有起作用。{样式表错误。无法编译}
*/RefNo[.=' "+$ref_num+ "']
,但这也不起作用。{样式表错误。无法编译}
*/RefNo[.='+$ref_num+']
,但这也不起作用。{样式表错误。无法编译}
我看不出哪里会有问题,只需在表达式中使用变量即可。
<xsl:variable name="ref_num" select="AABC" />
<xsl:variable name="filePath" select="'/file/to/path/in/documents/FILE1.xml'" />
<xsl:variable name="tours" select="document($filePath)/dataroot" />
<xsl:template match="holiday">
<fromPrice>
<xsl:copy-of select="$tours/Tour[RefNo = $ref_num]/AXL" />
</fromPrice>
</xsl:template>
提示:XPath表达式不是字符串。这不是插值。