类型错误:无法读取未定义的属性“then”

IT技术 javascript angularjs promise
2021-02-16 14:35:39
loginService.islogged() 

上面的函数返回一个像“failed”这样的字符串。但是,当我尝试在其上运行 then 函数时,它会返回错误

TypeError: Cannot read property 'then' of undefined

并且光标在 之后connected和之前指示.then

下面是完整的功能:

var connected=loginService.islogged();
alert(connected);
connected.then(function(msg){
    alert("connected value is "+connected);
    alert("msg.data value is "+msg.data);
    if(!msg.data.account_session || loginService.islogged()=="failed")       
        $location.path('/login');
});

更新

这是islogged()函数

islogged:function(){
    var cUid=sessionService.get('uid');
    alert("in loginServce, cuid is "+cUid);
    var $checkSessionServer=$http.post('data/check_session.php?cUid='+cUid);
    $checkSessionServer.then(function(){
        alert("session check returned!");
        console.log("checkSessionServer is "+$checkSessionServer);
        return $checkSessionServer;
    });
}

我确信这$checkSessionServer将导致“失败”的字符串。而已。

3个回答

您需要将您的Promise返回给调用函数。

islogged:function(){
    var cUid=sessionService.get('uid');
    alert("in loginServce, cuid is "+cUid);
    var $checkSessionServer=$http.post('data/check_session.php?cUid='+cUid);
    $checkSessionServer.then(function(){
        alert("session check returned!");
        console.log("checkSessionServer is "+$checkSessionServer);
    });
    return $checkSessionServer; // <-- return your promise to the calling function
}
这其实就是我厂不回Promise的原因。我忘了做return $http.post一旦我将前缀添加return$http,它就开始正常工作。
2021-05-02 14:35:39
@Devner 谢谢,我也忘记通过return了。
2021-05-09 14:35:39

类型错误:使用 AngularJS 调用 Django 服务时,无法读取未定义的属性“then”。

如果您正在调用 Python 服务,代码将如下所示:

this.updateTalentSupplier=function(supplierObj){
  var promise = $http({
    method: 'POST',
      url: bbConfig.BWS+'updateTalentSupplier/',
      data:supplierObj,
      withCredentials: false,
      contentType:'application/json',
      dataType:'json'
    });
    return promise; //Promise is returned 
}

我们使用 MongoDB 作为数据库(我知道这无关紧要。但是如果有人使用 MongoDB + Python (Django) + AngularJS 进行搜索,结果应该会出现。

返回函数内的promise值

return new Promise((done, err) => {
        ......
})