繁体   English   中英

在API调用返回之前,Angular Typeahead返回-导致“未定义的长度”错误

[英]Angular Typeahead returns before API call has returned - causing 'Length of Undefined' error

我目前正在实现一个Angular提前输入,每次用户更改输入时都会从API提取数据。 如果我添加typeahead-wait-ms=200则typeahead可以正常运行。 如果不这样做,则会收到length of undefined.的错误length of undefined. 这是代码:

的HTML

<input type="text" ng-model="selectedUser" typeahead="user for user in userTypeAhead($viewValue)">

的JavaScript

$scope.userTypeAhead = function(userTypeAheadInput){
    myService.searchUserTypeAhead(userTypeAheadInput).then(function(data) {

        $scope.userTypeAheadResults = [];

        for (i = 0; i < data.array.length; i++) {
             $scope.userTypeAheadResults.push(data.array[i].userName);
        }

        return $scope.userTypeAheadResults;

    }, function(error) {
        console.log(error)
    }); 
}  

代码通过后, $scope.userTypeAheadResults返回一个将在预输入中显示的userNames数组。 数组正确返回,但是在函数返回之前,错误已经在控制台中显示出来,提示length of undefined 我在这里查看了关于stackoverflow的其他几个问题,但没有任何运气。 有任何想法吗? 提前致谢。

兑现承诺。

$scope.userTypeAhead = function(userTypeAheadInput){
    // return the promise
    return myService.searchUserTypeAhead(userTypeAheadInput).then(function(data) {

        $scope.userTypeAheadResults = [];

        for (i = 0; i < $scope.data.array.length; i++) {
             $scope.userTypeAheadResults.push(data.array[i].userName);
        }

        return $scope.userTypeAheadResults;

    }, function(error) {
        console.log(error)
    }); 
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM