我正在使用 .reduce 函数从数组中获取数据,我不确定这是否是最好的方法,但是由于我在另一篇文章中收到的一些帮助,这是目前唯一有效的方法。
我不知道如何使用函数中所做的更改来更新数组,返回数组会忽略所做的更改。
数据由路由器提供并每秒更新一次。
var data = [
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: '1.1.1.1',
tx: '0',
rx: '384'},
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: '8.8.8.8',
tx: '384',
rx: '384'},
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: '1.1.1.1',
tx: '384',
rx: '384',},
];
// We resolve the DNS and output the final array
let DNSvariable = result.reduce((arr, currentValue) => {
var setIP = currentValue.dstAddress;
var dns = require('dns');
dns.setServers([
'8.8.8.8',
]);
// Test that IP's are being received correctly.
console.log(setIP);
// Resolve the IP addresses
dns.reverse(setIP, (err, address) => {
currentValue.dstAddress = address;
// If I log the currentValue inside this function everything looks correct, it has updated the values in the full array. I need to push this array, into the returned array.
});
return arr;
}, []);
// Logging the variable produces the array with the original IP
console.log(DNSvariable);
我想要 console.log(DNSvariable); 返回具有解析名称的数组,此时它正在返回地址。我只是不知道如何更新数组。
预期结果是:
var data = [
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: 'one.one.one.one',
tx: '0',
rx: '384'},
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: 'dns.google',
tx: '384',
rx: '384'},
{ macProtocol: 'ip',
ipProtocol: 'udp',
dstAddress: 'one.one.one.one',
tx: '384',
rx: '384',},
];
如果有任何不正确或发布不正确,我深表歉意。
编辑:我使用 reduce 函数的原因是因为访问 dstAddress 的所有其他方法都没有以与 dns 函数一起使用的方式返回数据。这绝对不是正确的方法。
烙印99
神不在的星期二
翻阅古今
相关分类