在撒克逊语中调用 exslt 时出错

发布于 2024-10-18 00:04:44 字数 257 浏览 2 评论 0原文

我收到错误消息:

“找不到名为的匹配的 1 参数函数 {http://exslt.org/common}node-set()"

使用 Saxon 运行 xslt 转换时的 我尝试在 Windows XP 上使用 Saxon PE和

EE,但 EXSLT 应该可以立即使用 Saxon。

I get the error message:

"Cannot find a matching 1-argument function named
{http://exslt.org/common}node-set()"

when running a xslt transformation with the Saxon engine.

I've tried using Saxon PE and EE on Windows XP and it gives the same error. EXSLT should work out of the box with Saxon. Does anyone have a solution on how I may resolve this, please?

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

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

发布评论

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

评论(1

病女 2024-10-25 00:04:44

Saxon PE 和 EE 是 XSLT 2.0 处理器实现,您不需要节点集扩展功能,因为在 XSLT 2.0 中,结果树片段和节点集之间的差异不再存在。因此,您应该能够在处理的样式表中简单地使用例如 $var/foo/bar 而不是 exsl:node-set($var)/foo/bar变量。

Saxon PE and EE are XSLT 2.0 processor implementations where you don't need a node-set extension function as in XSLT 2.0 the difference between result tree fragments and node-sets does no longer exists. So you should be able to simply use e.g. $var/foo/bar instead of exsl:node-set($var)/foo/bar in your stylesheets where you process variables.

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