离子angularjs更改$ scope值的返回null?

时间:2015-03-21 07:30:02

标签: javascript angularjs

我的HTML

<input ng-model="query" ng-change="change(text)" type="text" placeholder="Search">  

我的js

  $scope.query = null;
  $scope.change = function() {
    console.log($scope.query); // null?
    $timeout(function() {
      $http.get('example.com/' + $scope.query 
        ).then(function(result){
            $scope.tracks = result.data.items;

          });
      }, 1000);
  }

为什么我的$ scope.query在更改函数中总是为空?

0 个答案:

没有答案