JavaScript native Promise() without callback

点点圈 提交于 2019-11-27 08:27:12

问题


Look at this jQuery code:

var promise = new Deferred(),
    some;

some = function(promise) {
    // do cool things

    promise.resolve();
};

promise.then(/*  callback cool things   */);

// init everything
some(promise);

I am not sure about architecture correctness of such approach, but I used it for long time and it is convenient for me.

In native JavaScript I can not use such approach. Constructor new Promise() requires a callback parameter, so I can not pass instance of Promise as a parameter.

So my question is: how can I predefine JavaScript native promise, pass it as a parameter to function and the resolve?


回答1:


The execution flow would be a little different, but basically work the same way:

function some(resolve, reject) {
    resolve();
}

var promise = new Promise(some);

promise.then(/*  callback cool things   */);

Instead of some getting passed the promise itself, it gets passed the resolve and reject functions. So, the dependency is just the other way round.




回答2:


Here's a basic implementation that would preserve your application flow as-is.

Do not use this in real life - you'd be missing out on throw safety (thanks to @BenjaminGruenbaum for the hint).

var MyDeferred = function() {
    var _resolve,
        _reject,
        capturedPromise = new Promise(function(resolve, reject){
            _resolve = resolve;
            _reject  = reject;
        });

    return {
        'resolve' : _resolve,
        'reject'  : _reject,
        'then'    : function() { capturedPromise.then.apply(capturedPromise, arguments); },
        'catch'   : function() { capturedPromise.catch.apply(capturedPromise, arguments); }
    }
};


来源:https://stackoverflow.com/questions/23586425/javascript-native-promise-without-callback

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!