基本上,我需要使用JSONPath获取字符串值的一部分。我无法首先使用JSONPath获取完整值,然后使用另一种语言获取它的一部分。
有没有办法在JSONPath中执行此操作?
答案 0 :(得分:0)
如果您可以举例说明某些JSON数据,那就太棒了。根据你所写的内容,我怀疑,你正在寻找这样的东西(这里是JSFilddle:http://jsfiddle.net/hbi99/4WYkc/);
var data = {
"store": {
"book": [
{
"@price": 12.99,
"title": "Sword of Honour",
"category": "fiction",
"author": "Evelyn Waugh"
},
{
"@price": 22.99,
"title": "The Lord of the Rings",
"category": "fiction",
"author": "J. R. R. Tolkien",
"isbn": "0-395-19395-8"
}
],
"bicycle": {
"@price": 19.95,
"brand": "Cannondale",
"color": "red"
}
}
},
found = JSON.search(data, '//*[contains(title, "Lord")]');
document.getElementById('output').innerHTML = found[0].title;
JSONPath不是标准化的“查询语言”,而是XPath。 JS库DefiantJS使用方法“search”扩展全局对象JSON,使用该方法可以使用XPath表达式查询JSON结构。该方法将匹配作为类似数组的对象返回。
要查看更多示例,请在此处查看实时XPath评估程序: http://defiantjs.com/#xpath_evaluator