我目前正在玩Bluebird。我的目标是使用此模块异步执行函数。我想知道是否有一些我错过了我的代码。我的脚本无法按预期工作。你能查一下我的代码吗?谢谢!
'use strict';
const Promise = require('bluebird');
// Generate alphabets
function range(start, stop) {
const result = [];
for (let idx = start.charCodeAt(0), end = stop.charCodeAt(0); idx <= end; idx++) {
result.push(String.fromCharCode(idx));
};
return result.join('');
};
// List alphabets
function listAz() {
const az = range('A', 'Z');
Array.from(az).forEach(function(char) {
console.log(char);
});
};
// List numbers
function listNum() {
for (let num = 1; num <= 10; num++) {
console.log(num);
};
};
function main() {
const listNumPromise = Promise.promisify(listNum);
const listAzPromise = Promise.promisify(listAz);
console.log('Hey!');
console.log('Calling listNum now...');
listNumPromise()
.then(function(data) {
console.log(data);
})
.catch(function(err) {
console.log(err);
});
console.log('Calling listAz now...');
listAzPromise()
.then(function(data) {
console.log(data);
})
.catch(function(err) {
console.log(err);
});
console.log('Done!');
};
if (require.main == module) {
main();
};
以下是使用上述代码运行脚本时的结果:
Hey!
Calling listNum now...
1
2
3
4
5
6
7
8
9
10
Calling listAz now...
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Done!
我的期望是:
Hey!
Calling listNum now...
Calling listAz now...
Done
1-10
A-Z
答案 0 :(得分:2)
您不能使同步函数异步。 listNum函数只是一个for循环和列出数字。
异步函数由I / O组成,例如数据库查询,HTTP请求和东西。
所以那些函数将是异步的。
答案 1 :(得分:2)
async库将帮助您完成此处的操作。