如何使 then 函数工作

How to make a then function work?

本文关键字:工作 函数 then 何使      更新时间:2023-09-26

我正在尝试创建一个带有角度的删除服务。

这是我的控制器:

app.controller('VoirMessagesController', function($scope, $rootScope, $routeParams, $location,$translate, userService, dataRefreshServices){
    $scope.messageToWatch = dataRefreshServices.getMessageToWatch();

    this.DeleteAMessage = function(){
        dataRefreshServices.SupprimerMessage($scope.messageToWatch).then(function(){
            $location.path('/messages'); // The problem is here
        });
    };

});

和称为:

$this.SupprimerMessage = function(message){
        var retour = true;
        if(message != undefined)
        {
            $translate(['MESSAGES_MESSAGERIE_SUPPRIMER', 'BUTTON_CANCEL', 'MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TEXTE', 'MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TITRE']).then(function(translations)
            {
                    var modalOptions = {
                closeButtonText: translations.BUTTON_CANCEL,
                actionButtonText: translations.MESSAGES_MESSAGERIE_SUPPRIMER,
                headerText: translations.MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TITRE,
                bodyText: translations.MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TEXTE
                };
                // displaying the modal box
                modalYesNoService.showModal({}, modalOptions).then(function (result) {              
                    var index = _.indexOf(listeMessages, _.find(listeMessages, function (_message) { return _message._id == message._id; }));
                    $this.SupprimerMessageFromServer(message).then(function(promise){
                        listeMessages[index]._id = 0;
                    });
                });
            });
        }
        return retour;
    };

我收到错误:

undefined is not a function
    at DeleteAMessage 

我知道我的函数没有返回任何承诺,但我不知道我该如何做到这一点,我只想在用户在我的模态窗口中单击是时才使用 $location.path 进行重定向。

我想添加一个"then"来等待用户的回答,然后再进行重定向。

看起来我应该创建一个承诺,但不知道如何"创建"一个承诺。当我使用 $http.get 时,我了解承诺中的内容,但在这里我不能(在没有预期数据之前,我只想知道用户何时单击是)。

谢谢

你试图在布尔值上调用.then(),这当然是行不通的。AngularJS文档包括使用$q(其承诺的风格)的非常易于理解的示例。

从文档中:

// for the purpose of this example let's assume that variables `$q` and `okToGreet`
// are available in the current lexical scope (they could have been injected or passed in).
function asyncGreet(name) {
  var deferred = $q.defer();
  setTimeout(function() {
    deferred.notify('About to greet ' + name + '.');
    if (okToGreet(name)) {
      deferred.resolve('Hello, ' + name + '!');
    } else {
      deferred.reject('Greeting ' + name + ' is not allowed.');
    }
  }, 1000);
  return deferred.promise;
}
var promise = asyncGreet('Robin Hood');
promise.then(function(greeting) {
  alert('Success: ' + greeting);
}, function(reason) {
  alert('Failed: ' + reason);
}, function(update) {
  alert('Got notification: ' + update);
});

只需添加一个参数(函数类型)进行回调

$this.SupprimerMessage = function(message, callback){
....
/* user pressed ok */
listeMessages[index]._id = 0;
callback();
....
}
$this.DeleteAMessage = function(){
    dataRefreshServices.SupprimerMessage($scope.messageToWatch, function() {
        $location.path('/messages');        
    });
};

以下是您在脚本中引入 promise ($q 服务)的方法:

$this.SupprimerMessage = function(message){
        //var retour = true;//no more need
        var defer = $q.defer(); //inject $q into your service via dependency injection - here create a promise
        if(message != undefined)
        {
            $translate(['MESSAGES_MESSAGERIE_SUPPRIMER', 'BUTTON_CANCEL', 'MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TEXTE', 'MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TITRE']).then(function(translations)
            {
                    var modalOptions = {
                closeButtonText: translations.BUTTON_CANCEL,
                actionButtonText: translations.MESSAGES_MESSAGERIE_SUPPRIMER,
                headerText: translations.MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TITRE,
                bodyText: translations.MESSAGES_MESSAGERIE_MESSAGE_VALIDATION_SUPPRESSION_TEXTE
                };
                // displaying the modal box
                modalYesNoService.showModal({}, modalOptions).then(function (result) {              
                    var index = _.indexOf(listeMessages, _.find(listeMessages, function (_message) { return _message._id == message._id; }));
                    $this.SupprimerMessageFromServer(message).then(function(promise){
                        listeMessages[index]._id = 0;
                        defer.resolve({message:"Message corectly deleted"});
                    },function(){//this is the error callback if you used $http for SupprimerMessageFromServer
                        defer.reject({error:"Something went wrong while deleting message"});
                    });
                });
            });
        }
        else{
            defer.reject({error:"No message defined"});//this will go to the error callback of the promise
        }
        return defer.promise;//whatever return a promise on which you'll be able to call .then()
    };