包含来自另一个 XML 文件的 XPath 表达式的 XML 节点 - 如何获取其值?

发布于 2025-01-06 03:21:03 字数 582 浏览 1 评论 0原文

文件 common.xml:

<common>
  <os1>Windows 7</os1>
</common>

文件 item.xml:

<item>
  <os>common/os1</os>
</item>

因此 item.xml 文件中的 os 节点包含一个指向 common.xml 文件中节点的 XPath 表达式。如何获取 XPath 表达式 (Windows 7) 指向的节点的实际值。如果我使用$input-context/item/os,我会得到common/os1

我正在使用 zorba-xquery 并且我已经声明:

declare variable $input-context external;
declare variable $common-context external;

File common.xml:

<common>
  <os1>Windows 7</os1>
</common>

File item.xml:

<item>
  <os>common/os1</os>
</item>

So the os node in the item.xml file contains an XPath expression pointing to a node in the common.xml file. How can I get the actual value of the node pointed by the XPath expression (Windows 7). If I use $input-context/item/os I get common/os1.

I'm using zorba-xquery and I have declared:

declare variable $input-context external;
declare variable $common-context external;

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

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

发布评论

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

评论(1

凉城凉梦凉人心 2025-01-13 03:21:03

这可以通过反射模块的 eval 函数来完成:

import module namespace reflection = "http://www.zorba-xquery.com/modules/reflection";

declare variable $common-context :=
  document {
    <common>
      <os1>Windows 7</os1>
    </common>
  };

declare variable $input-context :=
  document {
    <item>
      <os>common/os1</os>
    </item>
  };

let $path := $input-context/item/os/text()
let $query := fn:concat('$common-context/', $path, '/text()')
return
  reflection:eval($query)

This can be done with the eval function of the reflection module:

import module namespace reflection = "http://www.zorba-xquery.com/modules/reflection";

declare variable $common-context :=
  document {
    <common>
      <os1>Windows 7</os1>
    </common>
  };

declare variable $input-context :=
  document {
    <item>
      <os>common/os1</os>
    </item>
  };

let $path := $input-context/item/os/text()
let $query := fn:concat('$common-context/', $path, '/text()')
return
  reflection:eval($query)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文