编程语言
首页 > 编程语言> > javascript – Angular $http.get:如何捕获所有错误?

javascript – Angular $http.get:如何捕获所有错误?

作者:互联网

我发送一个表单到nodejs进行身份验证.在以下函数中使用$http.get并添加一个promise> .然后.在生产中,这是否处理了我可能从服务器获得的所有错误?我需要在此功能中添加其他内容吗?

MyApp.controller("Login", function($scope, $http){

    $scope.checkuser = function(user){

        $http.get('/login', user).then(function(response){

            if(response.data){
                console.log(response.data);
                    //based on response.data create if else .. 
            } else {
                console.log("nothing returned");
            }
        });
    }
});

一如既往,非常感谢!

解决方法:

您的函数只处理成功的服务器响应,如200,但它不考虑服务器异常500或授权错误401等.对于那些您需要提供catch回调:

$http.get('/login', user)
.then(function(response) {

    if (response.data) {
        console.log(response.data);
        //based on response.data create if else .. 
    } else {
        console.log("nothing returned");
    }
})
.catch(function() {
    // handle error
    console.log('error occurred');
})

标签:angular-promise,angular-http,javascript,angularjs,node-js
来源: https://codeday.me/bug/20190828/1753077.html