json 文字列のすべての値を単一の文字列として取得しようとしています。たとえば、xquery xml
let $x := <a> welcome to the world of <b> JSONiq </b></a>
return string($x)
戻りますwelcome to the world of JSONiq
JSONiq の次のドキュメントの同等の結果は何ですか:
let $y := {"a":"welcome to the world of ","b":" JSONiq"}
return xxxx($y)
結果は同じであるはずwelcome to the world of JSONiq
です。JavaScriptも知っていれば素晴らしいでしょう。