0

我是 node.js 和 socket.io 的新手,但我想编写一个小应用程序来向连接的客户端广播一些值。我首先不知道两件事如何在我的其他功能中触发 socket.broadcast.emit 或其他广播功能?在我的应用程序中,我有一个每秒计算一个值的函数,我想将此值发送给所有客户端。我的第二个问题是我如何在客户端中获取此消息并在我的其他 javascript 函数中使用它?我在 从服务器而不是从特定客户端广播 node.js + socket.io 之前看到了这个?但没有做我想做的事提前谢谢这里是我的代码:

var cronJob = require('cron').CronJob;
var snmp = require('snmp-native');
//var oid = [1, 3, 6, 1, 2, 1, 1, 1, 0];
//var oid1 = [1,3,6,1,2,1,11,1];
//var oid2 = [1,3,6,1,4,1,2636,3,9,1,53,0,18];
//var oid3 = [1,3,6,1,2,1,2,2,1,11,18];
var intraffic = [1,3,6,1,2,1,2,2,1,10,18]; //inbound traffic
var outtraffic = [1,3,6,1,2,1,2,2,1,16,18]; //outbound traffic
var inpps = [1,3,6,1,4,1,2636,3,3,1,1,3,518]; //interface inbound pps
var outpps = [1,3,6,1,4,1,2636,3,3,1,1,6,518]; //interface out pps

var session = new snmp.Session({ host: '10.0.0.73', port: 161, community: 'Pluto@com' });
new cronJob('* * * * * *', function(){
    session.get({ oid:intraffic }, function (error, varbind) {
        var vb;
        if (error) {
            console.log('Fail :(');
        } else {
            vb=varbind[0];
            console.log(vb.oid + ' = ' + vb.value + ' (' + vb.type + ')');
        }

    });
}, null, true, "America/Los_Angeles");
4

1 回答 1

2

因为第一个问题很简单,

在您的模块中,使用 socket.io 服务器实例创建一个名为 io 的变量,并在最后导出它。如果所有函数都在同一个模块上,您只需要一个全局变量(仅对该模块是全局的)

-- mymodule.js --

var io = require('socket.io').listen(80); // Create socket.io server as usual
...
module.exports.io = io; // Add this at the end of mymodule.js


// Broadcast in the same module where the server is defined
io.sockets.emit('this', { will: 'be received by everyone' });

-- 其他模块.js --

var wsserver = require( 'mymodule.js' ); // Require your module as usual and assign it to a variable
...
// Usage of socket server to broadcast a message in another module
wsserver.io.sockets.emit('this', { will: 'be received by everyone' });
于 2013-01-28T15:36:50.663 回答