作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试使用 this concept 时为了预先输入,我创建了以下代码(它适用于 json 数据,但不适用于此新数据):
HTML
<input type="text" ng-model="result" typeahead="suggestion for suggestion in instObjs($viewValue)">
JS
function NavbarCtrl ($scope, cService, $http, limitToFilter) {
$scope.institutions = [];
cService.getInstitutions().then(function(institutions){
$scope.institutions = institutions;
});
$scope.instObjs = function(institutions) {
return $scope.institutions.name.then(function(response){
return limitToFilter(response.data, 15);
});
};
};
最佳答案
看来,您正在尝试在分配之前使用 $scope.institutions.name
。我想,在调用 cService.getInstitutions()
之前调用了 $scope.instObjs。
但这是结果,而不是原因。
我可以看到您正在尝试访问数组的属性名称。你确定你不是这个意思吗:
$scope.instObjs = function(institutions) {
return institutions.name.then(function(response){
return limitToFilter(response.data, 15);
});
};
我的意思是使用函数的参数而不是数组。那是有道理的。这可能是一个原因。
关于javascript - 在范围内使用 Typeahead 和 AngularJS 加载数据会导致 "TypeError: Cannot call method ' then' of undefined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21342842/
我是一名优秀的程序员,十分优秀!