watchcollection吞咽正在观看的属性

时间:2015-04-20 16:16:52

标签: javascript angularjs angularjs-watch

有两个属性selCountrysearchText。有一个监视这两个变量的手表。第一个绑定到select元素,另一个绑定到输入文本字段。

我期望的行为是:如果我更改下拉值,文本框应该清除,反之亦然。然而,由于我编写手表的方式,第一次按键(与select元素交互后)吞下了按键。

必须有一些角度方式告诉角度不要处理发生在那些变量上的变量;但仍然允许他们的更改传播到视图......?

  $scope.$watchCollection('[selCountry, searchText]', function(newValues, oldValues, scope){
    console.log(newValues, oldValues, scope.selCountry, scope.searchText);
    var newVal;
    if(newValues[0] !== oldValues[0]) {
      console.log('1');
      newVal = newValues[0];
      scope.searchText = '';
    }
    else if(newValues[1] !== oldValues[1]) {
      console.log('2');
      newVal = newValues[1];
      scope.selCountry = '';
    }
    $scope.search = newVal;
    var count = 0;
    if(records)
      records.forEach(function(o){
        if(o.Country.toLowerCase().indexOf(newVal.toLowerCase())) count++;
      });
    $scope.matches = count;
  });

Plunk

2 个答案:

答案 0 :(得分:1)

我认为您遇到的问题是您正确捕获了监视事件,但是当您更改第二个变量的值时,它也会被watchCollection处理程序捕获并清除该值。例如:

selCountry = 'Mexico'

然后你改变

selText = 'City'

代码捕获selText的变化,正如您所期望的那样。它继续清除selCountry。但是既然你在范围对象上改变了selCountry的值,那么这样做也会调用watchCollection,然后说"好吧我现在需要清除searchText"。

您应该能够通过使用ng-change指令使用onChange事件处理程序捕获更改来解决此问题。请尝试以下

// Comment out/remove current watchCollection handler.
// Add the following in JS file
  $scope.searchTextChange = function(){
    $scope.selCountry = '';
    $scope.search = $scope.searchText;
    search($scope.search);
  };
  $scope.selectCountryChange = function(){
    $scope.searchText = '';
    $scope.search = $scope.selCountry;
    search($scope.search);
  };

  function search(value){
    var count = 0;
    if(records)
      records.forEach(function(o){
        if(o.Country.toLowerCase().indexOf(value.toLowerCase())) count++;
      });
    $scope.matches = count;
  }

并在您的HTML文件中

<!-- Add ng-change to each element as I have below -->
  <select ng-options="country for country in countries" ng-model="selCountry" ng-change="selectCountryChange()">
    <option value="">--select--</option>
  </select>
  <input type="text" ng-model="searchText" ng-change="searchTextChange()"/>

新的plunker:http://plnkr.co/edit/xCWxSM3RxsfZiQBY76L6?p=preview

答案 1 :(得分:0)

我认为你太过努力了,可以这么说。你做得很好,复杂性较低,watches

我建议您使用一些第三方库,例如lodash make数组/对象操作更容易。试试这个plunker http://plnkr.co/edit/YcYh8M,我认为它可以满足您的需求。

每次选择search text项时,它都会清除country,但在输入内容时会自动过滤options以匹配搜索文字。

HTML模板

<div ng-controller="MainCtrl">
  <select ng-options="country for country in countries" 
          ng-model="selected" 
          ng-change="search = null; searched();">
    <option value="">--select--</option>
  </select>
  <input type="text" 
         placeholder="search here"
         ng-model="search" 
         ng-change="selected = null; searched();">
  <br>
  <p>
     searched: {{ search || 'null' }},
     matches : {{ search ? countries.length : 'null' }}
  </p>
</div>

<强>的JavaScript

angular.module('myapp',[])
  .controller('MainCtrl', function($scope, $http) {
    $http.get('http://www.w3schools.com/angular/customers.php').then(function(response){
      $scope.allCountries = _.uniq(_.pluck(_.sortBy(response.data.records, 'Country'), 'Country'));
      $scope.countries = $scope.allCountries;
    });

    $scope.searched = function() {
      $scope.countries = $scope.allCountries;

      if ($scope.search) {
        var result = _.filter($scope.countries, function(country) {
          return country.toLowerCase().indexOf($scope.search.toLowerCase()) != -1;
        });            
        $scope.countries = result;
      }
    };
  });