gpt4 book ai didi

jsonpath - 根据JSONPATH中数组中的字符串过滤Json

转载 作者:行者123 更新时间:2023-12-02 06:32:36 26 4
gpt4 key购买 nike

我有一种情况,我有一个 json 字符串,它有一个子元素作为只包含字符串的数组。有没有办法获取包含特定字符串的数组的对象引用。
例子:

{ "Books":{  
"History":[
{
"badge":"y",
"Tags":[
"Indian","Culture"
],
"ISBN":"xxxxxxx",
"id":1,
"name":"Cultures in India"
},
{
"badge":"y",
"Tags":[
"Pre-historic","Creatures"
],
"ISBN":"xxxxxxx",
"id":1,
"name":"Pre-historic Ages"
}
]
}
}

实现:
从上面的 JSON 字符串中,需要获取 History 中“tags”列表中包含“Indian”的所有书籍。

我在我的项目中使用 JSONPATH 但如果有其他 API 可以提供类似的功能,欢迎任何帮助。

最佳答案

如果您使用的是 Goessner JSONPath,则 Duncan above 提到的 $.Books.History[?(@.Tags.indexOf('Indian') != -1)] 应该可以工作。

如果您使用 Jayway Java 端口 (github.com/jayway/JsonPath),则$.Books.History[?(@.Tags[?(@ == 'Indian')] != [])] 或更优雅地使用 in 运算符,如 $.Books.History[?('Indian' in @.Tags)] 。都试过了 here

关于jsonpath - 根据JSONPATH中数组中的字符串过滤Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30030652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com