0

我在我的网站上使用了 Promise(仍在学习),我想知道这之间是否有区别:

    return promise
            .then(ctxTransport.getTransportById(idTran, transport))
            .then(checkLocking)
            .fail(somethingWrong);

和这个:

    return promise
        .then(function () { return ctxTransport.getTransportById(idTran, transport); })
        .then(function () { return checkLocking(); })
        .fail(somethingWrong);

在第一次实现时,有时我会出错。

var getTransportById = function (transportId, transportObservable, forceRemote) {
    // Input: transportId: the id of the transport to retrieve
    // Input: forceRemote: boolean to force the fetch from server
    // Output: transportObservable: an observable filled with the transport

    ...

    return manager.executeQuery(query)
        .then(querySucceeded)
        .fail(queryFailed);

    function querySucceeded(data) {
        transportObservable(data.results[0]);
    }
};

function checkLocking() {
     var now = new Date();
     transport().lockedById(5);
     transport().lockedTime(now);
     return ctxTransport.saveChanges(SILENTSAVE);
 }

 function somethingWrong(error) {
     var msg = 'Error retreiving data. ' + error.message;
     logError(msg, error);
     throw error;
 }

谢谢。

4

1 回答 1

0

在 Promise 链中传递函数时,您应该传递不带参数的函数名称或(),或者在第二种情况下,匿名函数。这是因为Q将使用前一个承诺解决方案的结果/返回值为您调用它。

因此,.then(ctxTransport.getTransportById(idTran, transport))在语义上是不正确的,因为您不是传递函数,而是传递ctxTransport.getTransportById.

于 2013-06-10T05:04:17.147 回答