最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to emit a socket.io response within post request in NodeJS - Stack Overflow

programmeradmin4浏览0评论

I have a node server running a react application, integrated with Socket.io. All works fine. I also have an external application that uses the same data. What I want to do is, when the data changes, post to my node server and then in the response, emit to any data to users who are currently subscribed to the socket.

//SERVER CODE LIVES ABOVE HERE...

const io = require('socket.io')(server);

io.on('connection', (socket) => {
  socket.on('create data', function(data) {
    //a place to create data, once plete triggers everyone subscribed to get an update.
    socket.emit('data created', data);
  });

});


app.post('/api/datacreated/', function(req, res) {
  //HOW DO I EMIT IN HERE?! - this is ing from an external resource
  socket.emit('data created', data);
})

I have a node server running a react application, integrated with Socket.io. All works fine. I also have an external application that uses the same data. What I want to do is, when the data changes, post to my node server and then in the response, emit to any data to users who are currently subscribed to the socket.

//SERVER CODE LIVES ABOVE HERE...

const io = require('socket.io')(server);

io.on('connection', (socket) => {
  socket.on('create data', function(data) {
    //a place to create data, once plete triggers everyone subscribed to get an update.
    socket.emit('data created', data);
  });

});


app.post('/api/datacreated/', function(req, res) {
  //HOW DO I EMIT IN HERE?! - this is ing from an external resource
  socket.emit('data created', data);
})

Cheers for any time you've got!

Share Improve this question asked Jun 27, 2017 at 9:12 MattJHoughtonMattJHoughton 1,12813 silver badges19 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

Socket is locally scoped. io.sockets is not, so you can do:

app.post('/api/datacreated/', function(req, res) {
 //this is ing from an external resource
 io.sockets.emit('data created', data);
})

the solution that was working for me

const io = new Server(...)
global.io = io

app.post('/api/datacreated/', function(req, res) {
 global.io.emit('data created', data);
})
发布评论

评论列表(0)

  1. 暂无评论