Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 oXygen XML 编辑器,并定义了一系列 XQuery 转换。
问题是,到目前为止,输入 xml 需要声明为:
let $k := doc("path")
我想知道是否有某种方法可以替换doc("path")转换场景中定义的文件内容?
doc("path")
(即:在本例中为 untitled.xml)
尝试单击Parameters (0)并添加一个URL值为 的新参数${currentFileURL}。然后在你的脚本序言中声明一个外部变量:
Parameters (0)
URL
${currentFileURL}
declare variable $URL external;
然后您应该能够引用doc($URL),并且如果 Oxygen 中的 XML URL 发生更改,它应该传递到您的 XQuery 脚本。
doc($URL)