使用socket io用于移动应用和网络

时间:2016-05-08 05:52:17

标签: angularjs node.js sockets ionic-framework

我想这样做

  1. 用户在移动应用上下了订单
  2. 在卖家的仪表板(网站)中,它显示即时订单
  3. 我已经完成了普通的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?
                });
            });
    });
    

0 个答案:

没有答案