我正在尝试运行 Priscilla Walmsley 的XQuery book中的示例 24-12 。
xquery version "3.1";
declare namespace output = "http://www.w3.org/2010/xslt-xquery-serialization";
declare option output:method "json";
declare option output:indent "yes";
map {
"number": 557,
"props":
<props>
<length>31</length>
</props>
}
我收到错误“无法将地图添加到树”。为什么这不起作用?有配置问题吗?
我在 <oXygen/> XML 编辑器 19.1 版中运行它。