你们可以教我如何使用jsoniq来显示robin cruose和tom jones的书名吗?我经历了一些研究,但不管我怎么做,总是错的。
{
"books": {
"reader": {
"Read": {
"book": {
"name": "Robinson Crusoe",
"author": "Daniel Defoe"
}
},
"HaventRead": {
"book": {
"name": " Tom Jones",
"author": "Henry Fielding "
}
},
"_type": "Ken Rawing"
}
}
}
这就是我在zorba.io中所做的,它有很多错误,我非常肯定我的方式是完全错误的。请教我
for $reader in collection("books"),
$read in collection("books"),
$book in collection ("books")
where $reader.type eq "Ken Rawing"
return $book
答案 0 :(得分:1)
使用导航语法(即.
表示法)从JSON文档中获取一些叶子值。
它不需要for
子句,因为.
隐含了迭代。
假设对象存储在变量$content
中,$content.books.reader
导航到包含字段Read
和HaventRead
的对象。调用jnlib:values()
然后获取其中的两个对象,然后使用.book.name
一直继续使用该名称。
查询是这样的(大部分实际上是输入文档本身,通常存储在文件或数据存储中):
jsoniq version "1.0";
import module namespace jnlib = "http://jsoniq.org/function-library";
(: That's the input document, stored in a global variable :)
declare variable $content := {
"books": {
"reader": {
"Read": {
"book": {
"name": "Robinson Crusoe",
"author": "Daniel Defoe"
}
},
"HaventRead": {
"book": {
"name": " Tom Jones",
"author": "Henry Fielding "
}
},
"_type": "Ken Rawing"
}
}
};
(: That's the query :)
jnlib:values($content.books.reader).book.name
注意jsoniq version="1.0";
,它激活原生JSONiq解析器(try.zorba.io
上的默认解析器是XQuery)。
也可以在zorba.io
中进行测试 JSONiq也作为XQuery的扩展存在,在这种情况下,导航是通过函数调用完成的,因为.
是XML名称中的有效字符。但是,除非您也要处理XML,否则不建议使用它。
jnlib:values($content("books")("reader"))("book")("name")