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.
在 XQuery 中创建一个文本节点是这样完成的
text { 'foo' }
有人可以在这里解释语法吗?是否正在调用函数?如果是这样,我希望看到text('foo')。
text('foo')
那是一个计算的构造函数;用于创建节点的 XQuery 语法。相同的语法适用于创建(例如)元素和属性:
element hello { attribute target { "world" } }
有关完整的详细信息,请参阅XQuery 规范。