我的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在更改函数中总是为空?