web-dev-qa-db-ja.com

AngularJs-RXJSObservableのサブスクライブ解除

RXJSobservableをセットアップしました。サービスファクトリのサブジェクトをサブスクライブする2つのコンポーネントがあります。選択したコンポーネントのサブジェクトを解除して、ボタンを押すとサブジェクトブロードキャストのリッスンが停止するようにするにはどうすればよいですか?

私のjsfiddleを参照してください アプリの購読解除

私のコード:

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

  <script type="text/ng-template" id="/boxa">
  BoxA - Message Listener: </br>
  <strong>{{boxA.msg}}</strong></br>
  <md-button ng-click='boxA.unsubcribe()' class='md-warn'>Unsubscribe A</md-button>
  </script>
  <script type="text/ng-template" id="/boxb">
    BoxB - Message Listener: </br>
  <strong>{{boxB.msg}}</strong></br>
  <md-button ng-click='boxB.unsubcribe()' class='md-warn'>Unsubscribe B</md-button>
 </script>

  <md-content class='md-padding'>
    <h3>
      {{name}}
    </h3>
    <label>Enter Text To Broadcast</label>
    <input ng-model='msg'/></br>
    <md-button class='md-primary' ng-click='broadcastFn()'>Broadcast</md-button></br>
    <h4>
    Components
    </h4>
    <box-a></box-a></br>
    <box-b></box-b>
  </md-content>

</div><!--end app-->


var app = angular.module('myApp', ['ngMaterial']);
app.controller('mainCtrl', function($scope,msgService) {

   $scope.name = "Observer App Example";
   $scope.msg = 'Message';
   $scope.broadcastFn = function(){
        msgService.broadcast($scope.msg);
   }   
});

app.component("boxA",  {
      bindings: {},
      controller: function(msgService) {
        var boxA = this;
        boxA.msgService = msgService;            
        boxA.msg = '';
        boxA.msgService.subscribe(function(obj) { 
            console.log('Listerner A');
          boxA.msg = obj;
                });
        boxA.unsubscribe=function(){

        };

      },
      controllerAs: 'boxA',
      templateUrl: "/boxa"
})
app.component("boxB",  {
      bindings: {},
      controller: function(msgService) {
        var boxB = this;
        boxB.msgService = msgService;            
        boxB.msg = '';
        boxB.msgService.subscribe(function(obj) { 
            console.log('Listerner B');
          boxB.msg = obj;
                });

        boxB.unsubscribe=function(){

        };
      },
      controllerAs: 'boxB',
      templateUrl: "/boxb"
})

app.factory('msgService', ['$http', function($http){
    var msgSubject = new Rx.ReplaySubject();
    return{
        subscribe:function(subscription){
            msgSubject.subscribe(subscription);
        },
        broadcast:function(msg){
        console.log('success');
            msgSubject.onNext(msg);
        }
    }   
}])
8
Ka Tech

更新されたフィドルを参照してください: ここ

subscribe関数は使用するDisposableを返します。最初に、ファクトリからサブスクリプションを返す必要があります(60行目)。

subscribe: function(subscription){
    return msgSubject.subscribe(subscription);
}

これにより、サブスクリプションを各コントローラーに保存して、将来使用できるようになります。 (21行目と42行目)

var boxASubscription = boxA.msgService.subscribe(function(obj) {
    console.log('Listerner A');
    boxA.msg = obj;
});

その後、サブスクリプションを解除するときに、サブスクリプションでdisposeメソッドを呼び出すことができます。

boxA.unsubscribe = function(){
    console.log('Unsubscribe A');
    boxASubscription.dispose();
};

n.b.

なんらかの理由で、デモを<md-button>で動作させることができなかったので、デモのためにこれを<button>に変更しました。

7
David Blaney

上記の私のコメントによると、新しいRxJs5ベータ版がsubscription.dispose()からsubscription.unsubscribe()に変更されました。こちらを参照してください https://github.com/ReactiveX/rxjs/blob/ master/MIGRATION.md#subscription-dispose-is-now-unsubscribe

14
CallMeLaNN