我想从下面的 json 中获取针对“名称”字段的值。我尝试使用工具http://jsonpathfinder.com/和http://jsonpath.com/?我正在使用http://jsonpath.herokuapp.com/来验证表达式路径是否正确,但它总是将我返回为不正确的表达式。
{
"data" : {
"PensionRetriever(Customer=ABC, typeInfo=valid)" : {
"name" : "lifeInsurance",
"created_at" : 1552297775384,
"attributes" : [ {
"id" : "4044da39-c23b-4588-b6c4-975ce02e7cb2",
"name" : "lifeInsurance",
"created_at" : 1552297775384
}]
}
}
}
我试过了$.data["PensionRetriever(Customer=ABC, typeInfo=valid)"].name
,但这似乎不正确。你能告诉我现在得到“名字”的价值吗,即lifeInsurance