使用Jsoniq在json中显示一些字符串

时间:2016-09-09 18:26:33

标签: javascript json xquery jsoniq

你们可以教我如何使用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

1 个答案:

答案 0 :(得分:1)

使用导航语法(即.表示法)从JSON文档中获取一些叶子值。

它不需要for子句,因为.隐含了迭代。

假设对象存储在变量$content中,$content.books.reader导航到包含字段ReadHaventRead的对象。调用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")