Результат deffer.promise не будет отображаться в заголовке с помощью сервиса - PullRequest
0 голосов
/ 24 мая 2019

я использую angularjs 1.7 и пытаюсь отобразить результат функции с помощью службы в наборе текста

<input type="text" id="oppId" name="oppId" aria-label="oppId"
       ng-model="oppId"
       typeahead="item for item in commonService.oppIdTypeAhead($viewValue) | limitTo:10"
       ng-blur="checkAndValidate($event)">
oppIdTypeAhead: function (val) {
            var deferred = $q.defer();
            var config = {
                method: "GET",
                headers: { Accept: "application/json" },
                url: constants.oppPickup,
                params: {
                    oppID: val
                },
                timeout: this._getCanceler('OppTypeAhead')
            };

            $http(config).then(function (data) {
                deferred.resolve(data.data);
            }).catch(function (data, status, headers, config) {
                if (status === 0 && data === null) {
                    deferred.reject('canceled');
                } else {
                    deferred.reject(data);
                }
            });
            console.log(deferred.promise);
            return deferred.promise;

это результат, возвращаемый обещанием

enter image description here

должен отображать список результатов, но затем исключение Object не поддерживает свойство или метод 'success'

...