我正在使用nodejs的模块" xml2js"但我需要找到结果的根源。
parseString(data, function (err, result) {
console.log(result);
});
给了我
{ 'the-listener': { child1: [ 'test' ], child2: [ 'test' ] } }
我希望得到听众'。
而不是console.log(结果)我需要将其更改为什么才能获得“聆听者”?