2

我一直在看其他问题,但我不太明白我做错了什么。我想传递一个参数来仅选择某些结果,但我遇到了参数问题。

html(忽略 IE 部分)

<html>
<head>
<script>
function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}

function displayResult()
{
xml=loadXMLDoc("f.xml");
xsl=loadXMLDoc("xsl.xsl");
// code for IE
if (window.ActiveXObject)
  {
  ex=xml.transformNode(xsl);
  document.getElementById("example").innerHTML=ex;
  }
// code for Mozilla, Firefox, Opera, etc.
else if (document.implementation && document.implementation.createDocument)
  {
  xsltProcessor=new XSLTProcessor();
  xsltProcessor.importStylesheet(xsl);

  xsltProcessor.setParameter(null, "testParam", "voo");
  // alert(xsltProcessor.getParameter(null,"voc"));

  document.getElementById("example").innerHTML = "";

  resultDocument = xsltProcessor.transformToFragment(xml,document);
  document.getElementById("example").appendChild(resultDocument);
  }


}

</script>
</head>
<body onload="displayResult()">
    <li><u><a onclick="displayResult();" style="cursor: pointer;">test1</a></u></li>
<div id="example" />
</body>
</html>

xml

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="vocaroos.xsl"?>
<test>
    <artist name="Bert">
        <voo>bert1</voo>
    </artist>
    <artist name="Pet">
        <voo>pet1</voo>
    </artist>
</test>

xsl

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:param name="testParam"/>
<xsl:template match="/">
  <html>
  <body >
  <h2>Titleee</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>Teeeeeest</th>
    </tr>
    <xsl:for-each select="test/artist">
    <tr>
      <td><xsl:value-of select="$testParam"/></td>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet> 

这是结果(左)

结果

左边是它的作用,右边是我真正想要的。我期待着

<xsl:value-of select="$testParam"/>

会做同样的事情

<xsl:value-of select="voo"/>     (right outcome)

因为我做了 setParameter(null, "testParam", "voo"); 在 html 中,但由于某种原因,xsl 不使用“voo”作为选择,而是写入“voo”。

我一直在尝试不同的东西,但没有任何效果。哪里错了?

4

2 回答 2

2

参数的值是字符串“voo”,这就是为什么应用于参数的xsl:value-of会返回字符串“voo”。没有理由期望 XSLT 处理器将“voo”视为要计算的 XPath 表达式。

如果参数的值是元素名称,并且您想选择具有该名称的元素,则可以执行 select="*[name()=$testParam]" 之类的操作。如果它是一个更通用的 XPath 表达式,那么您将需要一个 xx:evaluate() 扩展。

于 2012-11-11T17:51:40.227 回答
1

XSLT 在 1.0 或 2.0 中都不进行动态评估。某些扩展功能,例如saxon:evaluate允许这样做,但它们的可用性取决于您使用的 XSLT 引擎。XSLT 3.0 建议在本机添加了这一点,xsl:evaluate但很少有 XSLT 引擎实现了 3.0 支持(saxon 就是其中之一)。

于 2012-11-11T06:40:31.947 回答