我是 Node 新手,正在努力访问一个简单的 JSON 对象。我的 request.body 将具有类似于以下内容的 JSON 内容:
{
"store_config": [
{
"name": "hello",
"name2": "world"
}
]
}
“store_config”值将始终存在,但其中的键和值可以是任何值。
我如何遍历键和值来访问每个?我还想以异步方式处理每个。
欣赏任何想法或方向。
更新
console.log(typeof(request.body));
回报:Object
parsedBody = JSON.parse(request.body);
返回:
SyntaxError: Unexpected token o
at Object.parse (native)
更新 2 - 进一步调试:
当我尝试遍历数组时,只有一个值:
request.body.store_config.forEach(function(item, index) {
console.log(index);
console.log(request.body.store_config[index]);
});
返回:
0
{ name: 'hello', name2: 'world' }