1

我正在完全重写我的问题,并进一步简化它。

为什么,在下面的代码中,确实x()等于undefined而不是success通过console.log('success');

最后一行在控制台中执行完毕;然后.then()触发回调。

我怎样才能让它x()在最后一行开始执行之前返回“成功”值。

甚至 yF() 的计算结果为undefined。但是, .then() 正在回显th y: success

const promise = require('promise');
const requestify = require('requestify');


function x() {
    requestify.get('https://<redacted>/')
        .then(function (d) {
            console.log('success', d.code);
            return 'success';
        })
        .fail(function (f) {
            console.log('fail', f.code);
            return 'fail';
        });
    ;
}


var yF = function () {
    yP   .then(function (th) { console.log("th", th); return th; })
        .catch(function (fl) { console.log("fl", fl); return fl; });
}


var yP = new Promise(
    function (resolve, reject) {
        if (1 == 1) {
            resolve("y: success");
        } else {
            reject(new Error("y: fail"));
        }
    }
);




console.log("hello", x());
console.log("world", yF());
4

2 回答 2

0

两种方法:

1)x()〜我会打电话,向前传递一个变量

2) yP()~ 消费承诺

const promise = require('promise');
const requestify = require('requestify');

var f = "";


function yP() {
    return new Promise(function (resolve, reject) {
        requestify.get('https://<redacted>')
            .then(function (da) {
                var fpt = "success(yP):" + da.code.toString();
                console.log('success-yP', fpt);
                resolve(fpt);
            })
            .catch(function (ca) {
                var fpc = "fail(yP):" + ca.code.toString();
                console.log('fail-yP', fpc);
                reject(fpc);
            });
    });
}


function x() {
    requestify.get('https://<redacted>/')
        .then(function (da) {
            f = "success(x):" + da.code.toString();
            console.log('success-x', f);
            consumef();
        })
        .catch(function (ca) {
            f = "fail(x):" + ca.code.toString();
            console.log('fail-x', ca);
            consumef();
        });
    ;
}


function consumef() {
    console.log("hello", f);

}



x();
yP()
    .then(function (fyPt) { console.log('yP().then', fyPt); })
    .catch(function (fyPc) { console.log('yP().catch', fyPc); });

调试器监听 [::]:5858

成功-yP 成功(yP):200

yP().then 成功(yP):200

成功-x 成功(x):200

你好成功(x):200

于 2017-07-01T23:05:05.463 回答
0

该函数x不返回值。这个例子可能会有所帮助:

> function foo() { console.log('hi from foo'); }
undefined
> console.log('calling foo', foo());
hi from foo
calling foo undefined

您需要在函数中返回承诺。函数x可以这样改变:

function x() {
    return requestify.get('https://<redacted>/')
        .then(function (d) {
            console.log('success', d.code);
            return 'success';
        })
        .fail(function (f) {
            console.log('fail', f.code);
            return 'fail';
        });
}

现在你可以打电话xthen

x().then(result => assert(result === 'success'));
于 2017-07-01T21:33:13.770 回答