简体   繁体   English

为什么我的socket.io无法在离子上工作?

[英]Why my socket.io can not work in ionic?

Why my socket.io can not working in ionic? 为什么我的socket.io无法在离子上工作? I have simple project and I just edit in index.html and add index.js in js folder to try socket working. 我有一个简单的项目,我只是在index.html中进行编辑,然后在js文件夹中添加index.js来尝试套接字工作。

This is my index.html : 这是我的index.html:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link rel="manifest" href="manifest.json">

    <!-- un-comment this code to enable service worker
    <script>
      if ('serviceWorker' in navigator) {
        navigator.serviceWorker.register('service-worker.js')
          .then(() => console.log('service worker installed'))
          .catch(err => console.log('Error', err));
      }
    </script>-->

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
    <script src="js/controllers.js"></script>
    <script src="js/services.js"></script>
    <script type="text/javascript" src="http://cdn.socket.io/socket.io-1.0.3.js"></script>
    <script type="text/javascript" src="js/index.js"></script>
    <script type="text/javascript">
      app.initialize();

      document.addEventListener('deviceready', function() {
        socket.on('connect', function() {
          socket.on('text', function(text) {
            alert(text);
           });
         });
      });
    </script>
  </head>
  <body ng-app="starter">
    <!--
      The nav bar that will be updated as we navigate between views.
    -->
    <ion-nav-bar class="bar-stable">
      <ion-nav-back-button>
      </ion-nav-back-button>
    </ion-nav-bar>
    <!--
      The views will be rendered in the <ion-nav-view> directive below
      Templates are in the /templates folder (but you could also
      have templates inline in this html file if you'd like).
    -->
    <ion-nav-view></ion-nav-view>
  </body>
</html>

This is my index.js : 这是我的index.js:

var server = require('http').createServer();
var io = require('socket.io')(server);

io.sockets.on('connection', function (socket) {
    console.log('socket connected');

    socket.on('disconnect', function () {
        console.log('socket disconnected');
    });

    socket.emit('text', 'Your socket is successed');
});

server.listen(3000);

I'm run my project with ionic serve and error output like this : 我正在使用离子服务和错误输出来运行我的项目,如下所示:

enter image description here 在此处输入图片说明

You have to initialise the socket in the client like : 您必须像这样在客户端中初始化套接字:

var socket = io("yourDomainName");

Also make sure that you are using socket.io-client package for the client side socket.io.js 还要确保您使用的是客户端socket.io.js的socket.io-client软件包

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM