当前位置 : 主页 > 网页制作 > xml >

xml – XSL,获取当前工作目录

来源:互联网 收集:自由互联 发布时间:2021-06-13
我正在寻找一个将当前工作目录存储到变量中的XSL样式表的具体示例. 我需要这个,因为在我的情况下,我需要使用相对路径导入某些库样式表.知道我的处理器选择的路径作为当前目录就
我正在寻找一个将当前工作目录存储到变量中的XSL样式表的具体示例.

我需要这个,因为在我的情况下,我需要使用相对路径导入某些库样式表.知道我的处理器选择的路径作为当前目录就足够了.

编辑

请不要特定供应商.

在XSLT 2.0中,可以使用标准的XPath 2.0功能 resolve-uri().

请注意,包含/导入的样式表模块的相对URI相对于包含/导入样式表模块的基URI – 而不是“工作目录”!

以下是W3 F& O规范中对此功能的描述的一部分:

8.1 fn:resolve-uri

fn:resolve-uri($relative as
xs:string?) as xs:anyURI?

fn:resolve-uri($relative as
xs:string?, $base as xs:string) as
xs:anyURI?

Summary: The purpose of this function
is to enable a relative URI to be
resolved against an absolute URI.

The first form of this function
resolves $relative against the value
of the base-uri property from the
static context. If the base-uri
property is not initialized in the
static context an error is raised
[err:FONS0005].

这是一个非常简单的例子:

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>

 <xsl:template match="/">
  <xsl:sequence select=
   "resolve-uri('resolve-uri-example2.xsl')"/>
 </xsl:template>
</xsl:stylesheet>

当对任何xml文档(未使用)应用此转换时,结果为:

file:///c:/tests/resolve-uri-example2.xsl

这是正确的结果,因为我们的主样式表模块保存为:

c:/tests/resolve-uri-example2.xsl
网友评论