Socket.io发射不起作用(通过访问URL)

时间:2019-05-10 18:08:45

标签: node.js angularjs express websocket socket.io

我正在开发一个从外部硬件设备获取信号的应用程序。我通过将其重定向到应用程序中的某个URL来捕获该信号:“ / impulse /:id”。

我能够捕获信号,但是app.get('/ impulse /:id')内部的发射函数未触发。控制台日志是...

如何使发射功能起作用?

下面是我的server.js脚本,在该脚本中,我捕获了所有套接字信号并防止外部调用重定向到索引页。

...
const express = require('express');
const app = express();
const port = process.env.PORT || 8080; 
const socket = require('socket.io');

app.use(express.static(__dirname + '/public')); 
app.use('/api', appRoutes); 


mongoose.Promise = global.Promise;
mongoose.connect('mongodb://HERE IS MY DB INFO...', function(err) {
    if (err) {
        console.log('Not connected to the database: ' + err); // Log to console if unable to connect to database
    } else {
        console.log('Successfully connected to MongoDB'); // Log to console if able to connect to database
    }
});

var server = app.listen(port, function() {
    console.log('Running the server on port ' + port); // Listen on configured port
});

var io = socket(server);

io.on('connection', function(socket){

    socket.on('join', function(data){
        var gameroom = data.gameid;   
        console.log("joined: " + gameroom)     
        socket.join(gameroom);
    })

   //FUNCTION I WANT TO TRIGGER
    socket.on('impulse', function(data){
        console.log('IMPULSE')
        io.emit('impulseReceived', {

        })
    })

})

//PLACE WHERE I EMIT
app.get('/impulse/:id', function(req, res){
    console.log('Impulse Received')
    var time = req.query.TIME;
    var gameroom = req.params.id; 

    io.on('connect', function (socket) {
       socket.emit('impulse', {
       })
    })

    res.json({ success: true, message: 'received the time!'})
})

app.get('*', function(req, res) {
    res.sendFile(path.join(__dirname + '/public/app/views/index.html')); // Set index.html as layout
});

1 个答案:

答案 0 :(得分:0)

将您的代码更改为此,它应该可以工作

io.on('connect', function (socket) {
    socket.emit('impulse', {
    })
}
相关问题