我试图在BaseX的Xquery函数中更新SVG标记的一些属性。到目前为止,我成功地更新了一个属性,并返回了新节点,但没有返回多个属性。
我尝试了多次更新,作为这里描述的语句的变体,但无论我尝试什么,它都不起作用。
declare function page:scaleSVG ($svg as node()*, $scale as xs:integer) as node()* {
return // update a few values of $svg attributes and return it
};
上面的函数基本上就是我想要实现的。
使用复制/修改/返回结构。下面是一个例子:
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"/>