我正在使用带有 Jmeter 的 JSON 路径提取器。
我需要提取 CURRENT 中的 36735928 或 37851136。尝试但没有成功。
$.payload.reservationLists.CURRENT.[0]
关于如何获得这些值的任何建议。我不想使用正则表达式提取器。是否可以获得以下 JSON 的值。
JSON响应如下
{
"payload": {
"userName": {
"firstName": "Peter",
"lastName": "Pan"
},
"reservationLists": {
"CURRENT": {
"36735928": {
"startDate": "2013-10-03",
"destination": "Balearen",
"mainProductType": "Mietwagen",
"allProductTypes": [
"Mietwagen"
]
},
"37851136": {
"startDate": "2013-10-14",
"destination": "Nevada, Las Vegas",
"mainProductType": "Camper",
"allProductTypes": [
"Extra",
"Extra"
]
}
}
"PAST": {
"12061210": {
"startDate": "2012-05-05",
"destination": "Loire / Nivernais",
"mainProductType": "Boot",
"allProductTypes": [
"Boot",
"Extra"
]
}
}
}
}
}