具有服务器发送事件的AngularJS

时间:2014-08-06 17:43:08

标签: javascript angularjs server-sent-events

我有一个带有以下控制器的AngularJS应用程序。它可以在常规JSON资源和手动更新请求上使用GET,但我无法使用Server-Sent Events。我面临的问题是,在收到SSE事件并设置/更新openListingsReport变量后,我的视图没有得到更新。我显然错过了一个非常基本的概念。请帮我解决这个问题。

var rpCtrl = angular.module('rpCtrl', ['rpSvc']);

rpCtrl.controller('rpOpenListingsCtrl', ['$scope', 'rpOpenListingsSvc',
    function ($scope, rpOpenListingsSvc) {
        $scope.updating = false;

        if (typeof(EventSource) !== "undefined") {
            // Yes! Server-sent events support!
            var source = new EventSource('/listings/events');

            source.onmessage = function (event) {
                $scope.openListingsReport = event.data;
                $scope.$apply();
                console.log($scope.openListingsReport);
            };
        }
    } else {
        // Sorry! No server-sent events support..
        alert('SSE not supported by browser.');
    }

    $scope.update = function () {
        $scope.updateTime = Date.now();
        $scope.updating = true;
        rpOpenListingsSvc.update();
    }

    $scope.reset = function () {
        $scope.updating = false;
    }
}]);

2 个答案:

答案 0 :(得分:7)

问题出在以下几行:

$scope.openListingsReport = event.data;

应该是:

$scope.openListingsReport = JSON.parse(event.data);

答案 1 :(得分:0)

只是有人建议使用SSE和AngularJs。

如果你想使用服务器端事件,我建议使用AngularJS内置的$ interval服务而不是SSE。

以下是基本示例。

<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="myCtrl">

    <p>Randome no:</p>

    <h1>{{myWelcome}}</h1>

</div>

<p>The $interval service runs a function every specified millisecond.</p>

<script>
    var app = angular.module('myApp', []);
    app.controller('myCtrl', function ($scope, $interval, $http) {
        $scope.myWelcome = new Date().toLocaleTimeString();
        $interval(function () {
            $scope.myWelcome = $http.get("test1.php").then(function (response) {
                $scope.myWelcome = response.data;
            });
        }, 3000);
    });
</script>

</body>
</html>

test1.php

<?php

echo rand(0,100000);