AngularJS - 脚本在工厂函数处停止 运行,承诺 return

AngularJS - Script stops running at factory function with promise return

我已经 learning/working 参与了一个新手项目,它基本上是一个简单的任务管理器(类似于那些待办事项列表项目)。我为这个项目设计了一个用户登录页面,下面是它的工作原理。

所以我有两个函数 siteLogin() 用于登录和在其中我想在用户登录后使用第二个函数 showTasks() 其中 returns 它从 API(我知道的承诺)。

所以首先我需要 return 来自 showTasks() 函数内的 $http 的值,但我最终 return 得到了一些东西喜欢 $$state 所以我在这个网站上搜索并找到了几个解决方案,到目前为止我了解到 $http 没有 return 值但 return 承诺。因此,经过几次尝试和失败后,我的代码现在运行到 showTasks() 并停在那里。

现在这是我的代码。

工厂

app.factory('userTaskList', function ($http) {

    return {
        showTasks: function (userName) {
            var tasks = { K_ADI: userName }; //UserName of the per 
            var $promise = $http({
                method: 'POST',
                url: 'http://localhost:5169/api/Isler/' + userName + '/IstenilenKayitCek',
                headers: {
                    'Content-Type': 'application/json'
                },
                data: tasks
            });
            $promise.then(function successCallback(response) {
                var data = response.data;
                console.log("Factory data:", response);
                return success(data);

            }, function errorCallback(response) {     
                error("Error");
            });
        }
    }
});

我的控制器:

 app.controller('myCtrl', ['$scope', '$http', function ($scope, $http,userTaskList ) {

 $scope.siteLogin = function () {
    var loginMember = {
        K_ADI: $scope.panel.loginUserName,  
        PAROLA: $scope.panel.loginPassword  // HTML input 
    };
    console.log(loginMember);
    $http({
        method: 'POST',
        url: 'http://localhost:5169/api/Kullanicilar/KullaniciDogrula',
        headers: {
            'Content-Type': 'application/json'
        },
        data: loginMember
    }).then(function successCallback(response) {
        console.log("Message sent", response);
        $scope.data = response.data.error.data;
        if ($scope.data === true) {

            console.log("User exists in database");

            //RUNS UNTIL HERE AND STOPS

            userTaskList.showTasks($scope.panel.loginUserName)
                .then(function (res) {
                    $scope.gorev = res;
                    console.log("Fonk ici : ", $scope.gorev);
                    console.log("222222", res);
                }, function (err) {
                    console.log(err);
                });
            console.log("outside func : ", $scope.gorev);     
        } 
    }, function errorCallback(response) {
        console.log("Error: ", response);
    });
}
}]);

这可能看起来像是重复的,堆栈上有很多类似的问题,但我尝试了这些解决方案(稍后我会 link )仍然没有解决我的这个问题,而且其中一些创建了其他像这样的问题。我尝试使用 $q,嵌套 .then,最后在工厂中定义代码,然后在模块中调用它的实例,依此类推。但是还是不行。

注意:抱歉我的英语不好。

showTasks函数中有几个错误:

app.factory('userTaskList', function ($http) {

    return {
        showTasks: function (userName) {
            var tasks = { K_ADI: userName }; //UserName of the per 
            var $promise = $http({
                method: 'POST',
                url: 'http://localhost:5169/api/Isler/' + userName + '/IstenilenKayitCek',
                headers: {
                    'Content-Type': 'application/json'
                },
                data: tasks
            });
            var derivedPromise = $promise.then(function successCallback(response) {
                var data = response.data;
                console.log("Factory data:", response);
                ̶r̶e̶t̶u̶r̶n̶ ̶s̶u̶c̶c̶e̶s̶s̶(̶d̶a̶t̶a̶)̶;̶
                //IMPORTANT
                return data;

            }, function errorCallback(response) {     
                ̶e̶r̶r̶o̶r̶(̶"̶E̶r̶r̶o̶r̶"̶)̶;̶
                console.log(response.status);
                //IMPORTANT
                throw response;
            });
            //IMPORTANT
            return derivedPromise;
        }
    }
});

所需的数据需要返回到 .then 方法成功处理程序。

需要重新抛出错误处理程序中的错误。否则,被拒绝的 promise 将 converted 成功,值为 undefined.

最后派生的promise需要返回给showTasks函数


更新

Do you think I call the function correctly inside the $scope.siteLogin ?

依赖注入错误:

̶a̶p̶p̶.̶c̶o̶n̶t̶r̶o̶l̶l̶e̶r̶(̶'̶m̶y̶C̶t̶r̶l̶'̶,̶ ̶[̶'̶$̶s̶c̶o̶p̶e̶'̶,̶ ̶'̶$̶h̶t̶t̶p̶'̶,̶ ̶
    function ($scope, $http,userTaskList ) {

应该是

app.controller('myCtrl', ['$scope', '$http', 'userTaskList', 
    function ($scope, $http,userTaskList ) {

app.controller('myCtrl', function ($scope, $http,userTaskList ) {