包含带有 XSLT 1.0 的纯文本文件

发布于 2024-08-30 15:56:46 字数 568 浏览 4 评论 0原文

如何将纯文本文件的内容包含在 XSLT 1.0 样式表的结果文档中?即,就像 document() 一样,但没有解析它:

<xsl:value-of select="magic-method-to-include-plaintext(@xlink_href)" />

几乎确定,如果没有扩展,这不起作用,因为:

  1. 有一个特殊的XSLT/XPath 2.0 中为此定义的 XPath 函数:

    ;
    
  2. XSLT FAQ 仅列出了 Java 扩展 通过 EXSLT 实现此目的

但是,也许我错过了一些东西?

How can I include the content of a plain text file in a result document from within an XSLT 1.0 stylesheet? I.e., just like document(), but without parsing it:

<xsl:value-of select="magic-method-to-include-plaintext(@xlink_href)" />

I am almost sure, that this doesn't work without extension, because:

  1. there is a special XPath function defined for this in XSLT/XPath 2.0:

    <xsl:value-of select="unparsed-text(@xlink:href, 'UTF-8')"/>
    
  2. the XSLT FAQ only lists a Java extension to achieve this via EXSLT

However, perhaps I missed something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2024-09-06 15:56:46

但是,也许我错过了什么?

不可以,如果不使用扩展函数,XSLT 1.0 就无法访问非 xml 文本文件的内容

解决此问题的一种方法是将字符串作为全局参数传递给转换。

However, perhaps I missed something?

No, XSLT 1.0 cannot access the content of a non-xml text file without using an extension function.

One way around this is to pass the string as a global parameter to the transformation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文