【发布时间】:2023-01-11 04:57:49
【问题描述】:
我有一个看起来像这样的 json 有效负载
{
"data":{
"methods":[
[
{
"p_id":"01",
"description":"Test01",
"offline":true
}
],
[
{
"p_id":"02",
"description":"Test02",
"offline":false
}
],
[
{
"p_id":"03",
"description":"Test03",
"offline":true
}
]
]
}
}
如何编写 JSONPath 表达式来获取“离线”= false 的“p_id”?
【问题讨论】: