我正在尝试使用JMESPath
. 这是我的测试 JSON 数组:
const search = jmespath.search;
const testData =
{
"ServiceAccount": [
{
"Type": "WIDGET",
"ID": [
{
"OrderNum": "12345",
"OrderTyp": "ABDCD"
}
]
}
]
};
我正在尝试OrderNum
使用以下 JMESPath 表达式提取键的值,但它返回null
. 这是我的搜索表达式:
const result = search(testData, 'ServiceAccount.ID.OrderNum');
console.log(result);
为什么这不起作用?