我很难过为什么ng-repeat没有显示搜索结果。什么有效:
发出HTTP GET请求以获取数据库中的所有数据,ng-repeat显示结果。
使用searchterm
发出HTTP GET请求以获取数据库中的部分数据,ng-repeat显示结果,$scope.searchterm = "acme";
将searchterm
设置为控制器。
我在模板中的搜索框将searchterm
发送到控制器,我可以在console.log中看到它,然后HTTP GET请求熄灭,正确的数据返回,我可以也可以在console.log中看到。
什么不起作用是使用ng-repeat在模板中显示搜索结果数据。
这是我的HTML模板:
<div ng-controller="HomeController">
<form>
<label>Search: <input type="text" ng-model="searchterm" /></label><br />
<input type="submit" ng-click="search(searchterm)" value="Search" />
</form>
</div>
<div ng-repeat="network_operator in network_operators">
<span>{{network_operator.name}}</span><br />
</div>
这是我的控制器:
app.controller('HomeController', ['$scope', '$http', function($scope, $http){
console.log("Home controller.");
// This code displays all of the data, using ng-repeat in the template
// $http.get('http://qualifynow.herokuapp.com/products?searchstring=').then(function(response) {
// $scope.network_operators = response.data.products;
// console.log($scope.network_operators);
// }, function(response) {
// console.log("Error, no data returned.");
// });
// This works instead in place of the next line, the search results display with ng-repeat
// $scope.searchterm = "acme";
$scope.search = function(searchterm) { // This is the line that kills the ng-repeat
console.log($scope.searchterm); // This works, the search term is passed to the controller
$http.get('http://qualifynow.herokuapp.com/products?searchstring=supplier:' + $scope.searchterm).then(function(response) {
$scope.network_operators = response.data.products;
console.log($scope.network_operators); // The correct search results are logged
console.log($scope.network_operators[0].name); // The correct name is logged
}, function(response) {
console.log("Error, no data returned.");
});
};
}]);
我尝试运行$scope.apply()
,但这会导致$digest
已在运行的错误消息。
$scope
函数是否创建了新的$scope.search
? I.e.,当$scope
试图在旧版ng-repeat
中查找数据时,我的数据是否幸运地存在新的$scope
?
我尝试ng-submit
而不是ng-click
,结果是一样的。
我尝试使用过滤器,但效果很好,但是对于大型数据库,将所有数据放在$scope
上然后过滤以获取搜索结果是没有意义的。只获得用户想要的数据会更快。
答案 0 :(得分:2)
您的控制器有限。将结果块(ng-repeat块)带入控制器内。
答案 1 :(得分:2)
在HTML中,显示搜索的部分不在控制器的范围内。
所以你应该这样做:
<div ng-controller="HomeController">
<form>
<label>Search: <input type="text" ng-model="searchterm" /></label><br />
<input type="submit" ng-click="search(searchterm)" value="Search" />
</form>
<div ng-repeat="network_operator in network_operators">
<span>{{network_operator.name}}</span><br />
</div>
</div>
这将在控制器的范围内进行搜索。