我在 O'Reily 的书XQuery中找到了以下 XQuery 用户定义函数,它用于在打印 XML 文件时更改其名称空间:
declare namespace functx = "http://www.functx.com";
declare function functx:change-element-ns-deep
($element as element(), $newns as xs:string) as element()
{
let $newName := QName ($newns, name ($element))
return (element {$newName}
{$element/@*,
for $child in $element/node()
return if ($child instance of element())
then functx:change-element-ns-deep ($child, $newns)
else $child
}
)
};
调用此函数的一个示例是:
<text xmlns:pre="pre">
{
functx:change-element-ns-deep(<pre:x><pre:y>123</pre:y></pre:x>, "http://new")
}
</text>
返回:
<test xmlns:pre="pre" >
< x xmlns="http//new">
<y>123</y>
</x>
</test>
但我得到的是:
<test>
<x>
<y>123</y>
</x>
</test>
似乎原始名称空间已被剥离,但尚未附加新名称空间,或者仅仅是处理器没有打印名称空间,因为未受影响的名称空间声明也消失了?