我正在尝试使用 xquery 从父节点中删除子节点。说,我的 xml 中有一个如下所示的条目:
<entry>
<id>36</id>
<title>Engineering Village Author Tool</title>
<updated>2009-09-30T12:55:42Z</updated>
<libx:libapp>
<libx:entry xmlns:libx="http://libx.org/xml/libx2" src="37"/>
</libx:libapp>
</entry>
如何删除子节点
<libx:entry xmlns:libx="http://libx.org/xml/libx2" src="37"/>
我正在使用以下 xquery 代码:
declare namespace libx='http://libx.org/xml/libx2';
declare namespace atom='http://www.w3.org/2005/Atom';
declare variable $child_id as xs:string external;
declare variable $parent_id as xs:string external;
declare variable $doc_name as xs:string external;
declare variable $feed as xs:anyAtomicType := doc($doc_name)/atom:feed;
let $parent_entry := $feed/atom:entry[atom:id=$parent_id]
return delete node $parent_entry//libx:entry[@libx:src=$child_id]
这里传递的变量的值是: child_id = 37 parent_id = 36 doc_name = 正在使用的文档的名称
我猜想使用命名空间的方式或我在行中的 xquery 中使用的 xpath 表达式有问题:
return delete node $parent_entry//libx:entry[@libx:src=$child_id]
请帮我解决这个问题。