我有一個簡單的JSON,我想獲得兩個屬性:如何從json中使用jsonpath獲取多個元素?
core
和matching
並驗證是否core : true
和matching : true
。
{
"lockVersion"
: 1,
"updatedBy" : "jan",
"updatedOn" : "2016-09-25T11:21:45Z",
"id" : 964,
"title" : "Corporate Numeric",
"description" : null,
"descType" : 31084140,
"descValueType" : 31084136,
"defaultSourceOfVerification" : "Source",
"core" : true,
"matching" : true,
"anything" :
[
],
"authorized"
:
[
1
]
}
是否有可能使用AND運算符執行此操作,還是必須執行兩步操作來提取一個集合,然後再次篩選以獲得最終結果? 我打算使用jp @ gc - JSON Path Assertion。
我upvoted你的答案,謝謝 –
這個解決方案適合我,謝謝;-) – Kac