我想通过snmp创建用于监视服务器的项目。我要使用net-snmp组件和express.i,当我想向客户端发送响应snmp walk时出现错误“无法在将标头发送到客户端后设置标头” 。
我写代码。
var snmp = require('net-snmp');
var express = require('express');
app.on('/api/snmp/', (req, res) => {
const session = new snmp.createSession(req.query.IP, req.query.Community);
session.walk(
'1.3.6.1',
20,
function(varbinds) {
let msg = [];
for (var i = 0; i < varbinds.length; i++) {
if (snmp.isVarbindError(varbinds[i])) {
console.log('error1');
} else {
console.log('send');
msg.push({ message: varbinds[i].oid + '|' + varbinds[i].value });
}
}
console.log(res.getHeaders());
// res.setHeader('Content-Type', 'application/json');
// res.send(msg);
res.end(msg);
// resolve(resultStr);
},
function(error) {
console.log('error2');
console.log(error.toString()); // show error in console: Cannot set headers after they are sent to the client
}
);
});
答案 0 :(得分:0)
将“ msg”变量的类型转换为有效的字符串时,可以找到解决方案。 但我不知道为什么这会有问题的对象类型。