我想通过动态构造的 keypath 访问嵌套的 JSON 字典。
键路径使用标准 JSON 点和下标运算符。(.
和[x]
)
例如:
var data =
{"title": "a_title",
"testList": [
{
"testListItemKey": "listitem1"
},
{
"testListItemKey": "listitem2",
"deepTestList": [
{
"testListItemKey": "listitem1",
"testListItemDict":{
"subTitle": "sub_title",
}
}]
}]
}
一个示例 keypath 字符串将是:
data.feedEntries[0].testList[2].deepTestList[1].testListItemDict.subTitle
到目前为止,我发现的最简单的工作解决方案是使用 eval 或函数构造函数:
function valueForKeypPath(data, keyPath) {
"use strict";
var evaluateKeypath = new Function('data', 'return data.' + keyPath);
return evaluateKeypath(data);
}
由于我不能完全信任从远程端点收到的 JSON 数据,我想避免使用 eval et.al。