0
我在使用JSONPath做某些事情時遇到了一些麻煩。這是我有:JSONPath模式 - 保持對象結構
[
{
"id": {
"type": "literal",
"value": "123456789",
"datatype": "http://www.w3.org/2001/XMLSchema#string"
},
"name": {
"type": "literal",
"value": "John Doe",
"datatype": "http://www.w3.org/2001/XMLSchema#string"
}
},
{
"id": {
"type": "literal",
"value": "2123456789",
"datatype": "http://www.w3.org/2001/XMLSchema#string"
},
"name": {
"type": "literal",
"value": "Jane Doe",
"datatype": "http://www.w3.org/2001/XMLSchema#string"
}
}
] } ]
而我想應用模式後,得到的是:
[
{
"id": "123456789",
"name": "John Doe"
},
{
"id": "2123456789",
"name": "Jane Doe"
}
]
這可能嗎?我正在做的最好的是["123456789", "John Doe","2123456789","Jane Doe"]
模式應該是什麼樣子?