zoukankan      html  css  js  c++  java
  • [RxJS + AngularJS] Sync Requests with RxJS and Angular

    When you implement a search bar, the user can make several different queries in a row. With a Promise based implementation, the displayed result would be what the longest promise returns. This is the problem which we want to solve.

    <!DOCTYPE html>
    <html>
    <head>
    <script src="https://cdn.rawgit.com/lodash/lodash/3.0.1/lodash.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/1.3.3/less.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.22/rx.all.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
      <meta charset="utf-8">
      <title>JS Bin</title>
    </head>
    <body ng-app="APP">
      <div>
        <p>Click on "Pets" then on "Nothing" in each form</p>
        <p>Because pets' promise take long to resolve (longer than nothing's), it ends up with inconsistent output in Basic setup: nothing should be displayed but pets arrive!</p>
        <p>RxJs is an elegant way to prevent this concurrency problems from appearing.</p>
      </div>
      <div ng-controller="StandardController as standard" style="margin-top:50px;">
        <p>Basic setup</p>
        <input id="s-pets" name="standardEntityType" type="radio" ng-model="standard.filters.entityType" value="pets"> 
        <label for="s-pets">Pets</label>
    
        <input id="s-colors" name="standardEntityType" type="radio" ng-model="standard.filters.entityType" value="colors">
        <label for="s-colors">Colors</label>
        
        <input id="s-nothing" name="standardEntityType" type="radio" ng-model="standard.filters.entityType" value="nothing"> 
        <label for="s-nothing">Nothing</label>
    
        <p>
          {{ standard.filters | json }}
        </p>
        <ul>
          <li ng-repeat="entity in standard.entities">
            {{ entity.name }}
          </li>
        </ul>
      </div>
    </body>
    </html>
    console.clear();
    
    angular.module('APP', [])
    
    .service('dataService', function($q, $timeout, $rootScope){
      var colors = [
        { name: 'red'   },
        { name: 'blue'  },
        { name: 'white' }
      ];
      
      var pets = [
        { name: 'cat' },
        { name: 'dog' }
      ];
    
      function fakeAjax(returnValue, delay){
        return $q(function(resolve){
          $timeout(function() {
            resolve(returnValue);
          }, delay);      
        });
      }
      
      function getColors(){
        return fakeAjax(colors, 1500);
      }
    
      function getPets(){
        return fakeAjax(pets, 3000);
      }
      
      function nullResponse(){
        return fakeAjax([], 1);
      }
      
      var mapping = {
        colors: getColors,
        pets:   getPets
      };
          
      return {
        getEntities: function(type){
          if (mapping[type])
            return mapping[type]();
          else
            return nullResponse();
        }
      };
    })
    
    .controller('StandardController', function($scope, dataService){
      this.entities = [];
      this.filters = {};
      var controller = this;
      
      function searchEntities(type){
        dataService.getEntities(type)
          .then(function(entities){
            controller.entities = entities;
          });
      }
      
      $scope.$watch(function(){ 
        return controller.filters.entityType;
      }, function(newVal){
        searchEntities(newVal);
      });
    });

    Solution 1: Add lodash _.debounce method to add some delay.

    .controller('StandardController', function($scope, dataService){
      this.entities = [];
      this.filters = {};
      var controller = this;
      
      function _searchEntities(type){
        dataService.getEntities(type)
          .then(function(entities){
            controller.entities = entities;
          });
      }
      
      var searchEntities = _.debounce(_searchEntities, 1500);
      $scope.$watch(function(){ 
        return controller.filters.entityType;
      }, function(newVal){
        searchEntities(newVal);
      });
    });

     The problem here is we have to assume a correct time. Too long, and the UI is not responsible enough, and too short, and we may encounter weirdness again.

    Solution 2: Using RxJS

    .controller('StandardController', function($scope, dataService){
      this.entities = [];
      this.filters = {};
      var controller = this;
      
      var Observable = Rx.Observable;
      var source = Observable.create(function(observe){
          $scope.$watch(function(){ 
            return controller.filters.entityType;
          }, function(newType){
            observe.onNext(newType);
          });
      }).flatMapLatest(function(type){
          return Observable.fromPromise(dataService.getEntities(type));
      });
      
      var sub = source.subscribe(function(entities){
        controller.entities = entities;
      });
    });

     No matter what order we click the radio buttons, we'll always get the expected outcome. RxJS will handle that for us. The main benefit of RxJS over mere promises is we always get the latest query results. You can see, this implementation of Rx has a way to cancel promises.

    Two methos to apply:

    .controller('StandardController', function($scope, dataService){
      this.entities = [];
      this.filters = {};
      var controller = this;
      
      var Observable = Rx.Observable;
      var source = Observable.create(function(observe){
          $scope.$watch(function(){ 
            return controller.filters.entityType;
          }, function(newType){
            observe.onNext(newType);
          });
      }).debounce(500).flatMapLatest(function(type){
          return Observable.fromPromise(dataService.getEntities(type));
      });
      
      var sub = source.subscribe(function(entities){
        controller.entities = entities;
      });
      
      $scope.$on('destory', function(){
        sub.dispose();
      });
    
    });

    The first thing is to clean after yourself. On each destroy event on the scope, so basically, whenever you use a router, it could be on route change, you have to dispose the listener so Rx knows it can get rid of everything linked to it.

    The second thing is we don't want to put too much pressure on our server, so we are going to use debounce again. It's very important to understand here that debounce is not a way to avoid UI issues. It's a way to avoid useless server queries.

  • 相关阅读:
    微信公众号 发送客服消息
    juqery 点击谁获取他的值,赋给input标签
    微信执行退出页面,直接回到微信对话窗口
    微信jssdk上传图片,一张一张的上传 和 一次性传好几张
    juqery 判断所有input 不能为空 判断只能为数字 判断身份证号:18位和15位 判断是否银行卡号
    php foreach
    现在越来越喜欢用ajax传值了,这样能让网站的体验性很好,今天就总结了一下常用的
    有时候不用explode截取字符串了,可以用用substr()
    ztree 文件夹类型的 树状图
    POJ 1065 Wooden Sticks
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4844925.html
Copyright © 2011-2022 走看看