考虑我的“destinationURLLookUp.xml”文件具有以下结构
<?xml version="1.0" encoding="UTF-8"?>
<destinationURLs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<destinationURL name="Default Page" value="/abc/ab"/>
<destinationURL name="Home Page" value="/abc/ac"/>
</destinationURLs>
我正在使用以下 XSLT 代码将这个文件加载到我的 XSLT 中,并且必须为我正在处理的“值”检索相应的“名称”属性
<destinationURL>
标签。
我尝试过的 XSLT 片段
<xsl:variable name="prop" select="document('destinationURLLookUp.xml')"/>
<xsl:variable name="rep2" select="$prop/destinationURLs/destinationURL[@value=@url]/@name"/>
<xsl:value-of select="$rep2" />
其中@url 是我将获得的与 'value' 属性匹配的 url 值
<destinationURL>
标签。我无法获得输出。我能否获得用于访问匹配的相应“值”的“名称”属性的相对 xpath。
尝试使用上面显示的 $prop/destinationURLs/destinationURL[@value=@url]/@name。