我发现了一个 SO question,它向我展示了如何使用 Angular UI - Bootstrap typeahead with $http object。在我将 Angular 版本更改为现在失败的 1.2RC2 之前,它运行良好(参见第一个 plunk)。我不太了解 Angular 代码,无法弄清楚原因。1.05 和 1.2 之间发生了什么改变来破坏这个代码
这个笨拙的作品:http ://plnkr.co/edit/eGG9Kj?p=preview
这个 plunk 不起作用:http ://plnkr.co/edit/HdVBpp?p=preview
相关代码
HTML
<html ng-app="plunker">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.2/angular.js"></script>
<script src="http://angular-ui.github.com/bootstrap/ui-bootstrap-tpls-0.2.0.js"></script>
<script src="example.js"></script>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<alert type="'info'" >Typeahead from <a href="http://angular-ui.github.com/bootstrap/">http://angular-ui.github.com/bootstrap/</a>"</alert>
<div class='container-fluid' ng-controller="TypeaheadCtrl">
<pre>Model: {{result | json}}</pre>
<input type="text" ng-model="result" typeahead="suggestion for suggestion in cities($viewValue)">
</div>
</body>
</html>
Javascript
angular.module('plunker', ['ui.bootstrap']);
function TypeaheadCtrl($scope, $http, limitToFilter) {
//http://www.geobytes.com/free-ajax-cities-jsonp-api.htm
$scope.cities = function(cityName) {
return $http.jsonp("http://gd.geobytes.com/AutoCompleteCity?callback=JSON_CALLBACK &filter=US&q="+cityName).then(function(response){
return limitToFilter(response.data, 15);
});
};
}
matches.length
它在第 1564 行的 Angular UI 代码中失败,因为未定义匹配项,因此无法找到匹配项。