我得到错误:
XPath 语法错误 ... in {...get-request-parameter('query..}:
Cannot find a matching 1-argument function named { http://orbeon.org/oxf/xml/xforms }get- request-parameter(). 注意:外部函数调用已被禁用
当我尝试使用以下命令执行管道时:
<p:processor name="oxf:xslt">
<p:input name="config">
<xsl:stylesheet version="2.0">
<xsl:template match="/">
<TargetURL>
<xsl:variable name="location" select="/Configuration/XMLDB/Location/text()"/>
<xsl:variable name="name" select="/Configuration/XMLDB/Name/text()"/>
<xsl:variable name="query" select="xxforms:get-request-parameter('query')"/>
<xsl:value-of select="fn:concat($location,'/',$name,'?',$query)"/>
</TargetURL>
</xsl:template>
</xsl:stylesheet>
</p:input>
<p:input name="data" href="#configuration"/>
<p:output name="data" id="Target"/>
</p:processor>
XPL 不是检索 HTTP 请求参数的正确位置吗(我应该在 page-flow.xml 中进行吗?)