我想这样做
我已经完成了普通的API,意味着没有socket.io,卖家必须刷新仪表板才能看到是否有任何订单。
昨天我玩socket.io,我被卡住了。我可以从我的移动应用程序(cilent)发送一些东西到我的服务器(node.js),但我不知道如何处理收到的数据。
router.get('/', function(req, res) {
io.on('connection', function(client) {
client.on('order', function(data) {
console.log(data); //real time data from mobile app
//I have the data but what to do here?
});
});
});