如何在AngularJS中使用socket.io?

时间:2016-06-04 10:10:08

标签: angularjs node.js socket.io

我想使用Socket.IO和AngularJS创建即时消息应用程序。

var socket = io();命令取消AngularJS脚本。如果我删除此行,AngularJS绑定将起作用,{{ message }}将显示消息变量的预期值。

但是,下面的代码会显示字符串" {{message}}"在我的页面上:

<html>
<head>
  <title>My Chat</title>
  <link rel="stylesheet" type="text/css" href="css/style.css">
  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
</head>
<body>
  <div ng-app="myApp" ng-controller="myCtrl">
    {{ message }}
    <form >
      <input autocomplete="off" ng-model="exampleText" type="text" />
      <button type='button' ng-click="submit()">
        Send
      </button>
    </form>
  </div>
  <script>

   var app=angular.module("myApp", []);
   var socket = io();
   app.controller("myCtrl", function($scope) {
     $scope.message='';
     $scope.submit=function(){
      socket.emit('chat message', = angular.copy($scope.exampleText));
      return false; 
    }
    socket.on('chat message', function(msg){
      $scope=$scope.message+'<li>'+ msg;
    });
  });
</script>
</body>
</html> 

1 个答案:

答案 0 :(得分:2)

正如Krzystof Safjanowski在他的评论中所说,看起来你忘了在你的html中包含websocket脚本文件。如果您查看浏览器的控制台(Chrome和Firefox中的Ctrl+Shift+J),您应该会看到相关的错误。