gpt4 book ai didi

javascript - Angular "Cannot read property ' then' of undefined"with promise

转载 作者:行者123 更新时间:2023-11-29 19:08:43 24 4
gpt4 key购买 nike

我被困在为什么我的 promise 不起作用。从我看过的其他文章来看,我认为我做得对。这是我目前的代码:

工厂代码

factory.isLoggedIn = function() {
$http.get('/api/v1/fitbit/auth')
.success((data) => {
return data.status;
})
.error((error) => {
console.log('Error: ' + error);
});
}

Controller 代码
    $scope.fitbitAuth = function() {
FitbitFactory.isLoggedIn()
.then(
function(data) {
$scope.fitbitStatus = data;
},
function(errorData) {
console.log(errorData);
});
return $scope.fitbitStatus;
};

根据我对 promise 的理解, return $scope.fitbitStatus应该填充 $scope.fitbitAuth ,但事实并非如此。我还在工厂中返回一个 bool 值,它应该填充 $scope.fitbitStatus .

最佳答案

您必须 return某事( promise ),或者是undefined .

工厂代码:

factory.isLoggedIn = function() {
return $http.get('/api/v1/fitbit/auth');
}

Controller 代码:
$scope.fitbitAuth = function() {
return FitbitFactory.isLoggedIn()
.then(
function(data) {
$scope.fitbitStatus = data;
},
function(errorData) {
console.log(errorData);
});

};

工厂中的完整成功/错误 block 不是必需的,应该删除。我也不确定你为什么 return $scope.fitbitStatus;因为它在返回时是未定义的。

编辑:编辑答案以实际返回 promise 。

关于javascript - Angular "Cannot read property ' then' of undefined"with promise,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40811815/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com