我完全重写了我的问题,请进一步深化。
为什么在以下代码中,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());
答案 0 :(得分:0)
函数x
不返回值。这个例子可能会有所帮助:
> function foo() { console.log('hi from foo'); }
undefined
> console.log('calling foo', foo());
hi from foo
calling foo undefined
您需要在函数中返回promise。函数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';
});
}
现在,您可以使用x
致电then
:
x().then(result => assert(result === 'success'));
答案 1 :(得分: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):200
yP()。然后成功(yP):200
success-x success(x):200
你好成功(x):200