我想使用 xslt 转换 xml,但重要的变量来自请求。我有这样的xquery:
let $transform := doc("projekt.xsl")
let $serialization-options := 'method=xml media-type=text/xml omit-xml-declaration=yes indent=no'
let $params :=
<parameters>
<param name="output.omit-xml-declaration" value="yes"/>
<param name="output.indent" value="yes"/>
<param name="output.media-type" value="text/html"/>
<param name="output.method" value="xhtml"/>
<param name="param.name" value="topicid" />
<param name="param.select" value="{$topid}"/>
</parameters>
return
transform:transform($doc, $transform, $params, $serialization-options)
文件 project.xsl 在这里:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="topicid"/>
<xsl:template match="/">
<xsl:value-of select="$topicid"/>
<xsl:apply-templates select="discussflow/message[@topic=$topicid]"/>
</xsl:template>
<xsl:template name="msg" match="//message">
..........
</xsl:template>
我想你添加属性'select'到:
<xsl:param name="topicid"/>
在 xquery 中指定了 $topid 值。
我在这里看到了类似的东西:http ://www.techrepublic.com/article/pass-parameters-to-xsl-templates-programmatically/1044596 但在 xquery 中它不需要工作。
我使用存在数据库 1.4.1
编辑:
transform:transform 来自http://exist-db.org/xquery/transform命名空间
官方文档在这里:https ://en.wikibooks.org/wiki/XQuery/XQuery_and_XSLT