|
1 | 1 | <html ng-app>
|
2 | 2 | <head>
|
3 |
| -<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script> |
| 3 | + <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script> |
| 4 | + <script> |
| 5 | + function ChatCtrl($scope) { |
| 6 | + var ws = new WebSocket("ws://127.0.0.1:8081"); |
| 7 | + $scope.messages = []; |
4 | 8 |
|
5 |
| -<script> |
6 |
| - function ChatCtrl($scope) { |
7 |
| - var wsuri = "ws://127.0.0.1:8081", |
8 |
| - ws = new WebSocket(wsuri); |
9 |
| - $scope.messages = []; |
| 9 | + $scope.sendMessage = function() { |
| 10 | + ws.send($scope.messageText); |
| 11 | + $scope.messageText = ""; |
| 12 | + }; |
10 | 13 |
|
11 |
| - $scope.sendMessage = function() { |
12 |
| - ws.send($scope.messageText); |
13 |
| - $scope.messageText = ""; |
14 |
| - }; |
15 |
| - |
16 |
| - ws.onmessage = function(e) { |
17 |
| - $scope.messages.push(e.data); |
18 |
| - $scope.$apply(); |
19 |
| - }; |
20 |
| - } |
21 |
| -</script> |
| 14 | + ws.onmessage = function(e) { |
| 15 | + $scope.messages.push(e.data); |
| 16 | + $scope.$apply(); |
| 17 | + }; |
| 18 | + } |
| 19 | + </script> |
22 | 20 | </head>
|
23 |
| - |
24 | 21 | <body>
|
25 |
| -<div ng-controller="ChatCtrl"> |
26 |
| - <ul id="messages"> |
27 |
| - {% raw %}<li ng-repeat="message in messages">{{message}}</li>{% endraw %} |
28 |
| - </ul> |
| 22 | + <div ng-controller="ChatCtrl"> |
| 23 | + <ul id="messages"> |
| 24 | + {% raw %}<li ng-repeat="message in messages">{{message}}</li>{% endraw %} |
| 25 | + </ul> |
29 | 26 |
|
30 |
| - <form ng-submit="sendMessage()"> |
31 |
| - <input type="text" ng-model="messageText" placeholder="Type your message here" autofocus /> |
32 |
| - <input type="submit" value="Send" /> |
33 |
| - </form |
34 |
| -</div> |
| 27 | + <form ng-submit="sendMessage()"> |
| 28 | + <input type="text" ng-model="messageText" placeholder="Type your message here" autofocus /> |
| 29 | + <input type="submit" value="Send" /> |
| 30 | + </form |
| 31 | + </div> |
35 | 32 | </body>
|
36 | 33 | </html>
|
0 commit comments