BaseX中的多个属性更新

时间:2016-11-18 16:03:00

标签: svg xquery basex xquery-update

我正在尝试在BaseX的Xquery函数中更新SVG标记的一些属性。到目前为止,我设法更新了一个属性并返回了新节点但没有多个属性。

我尝试了多次更新作为here所述语句的变体,但无论我尝试过什么都不行。

declare function  page:scaleSVG ($svg as node()*, $scale as xs:integer) as  node()* {
  return // update a few values of $svg attributes and return it
};

上面的功能基本上就是我想要达到的目的。

1 个答案:

答案 0 :(得分:1)

使用复制/修改/返回构造。这是一个例子:

declare function page:scaleSVG ($svg as node()*, $scale as xs:integer) as  node()* {
copy $c := $svg
 modify (
    replace value of node $c/@width with $scale,
    replace value of node $c/@height with $scale 
 )
return $c
};

然后叫这个:

page:scaleSVG(<svg width="100" height="100" />, 200)

将返回此信息:

<svg width="200" height="200"/>