Node.js | Bluebird Promise 不异步执行任务

Node.js | Bluebird Promise does not execute the tasks asynchronously

我目前正在玩 Bluebird。我的 objective 是使用这个模块异步执行函数。我想知道我是否遗漏了一些东西要放入我的代码中。我的脚本没有按预期工作。你能检查我下面的代码吗?谢谢!

'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

您不能将同步函数变为异步函数。 listNum 函数只是一个 for 循环和列表数字。

异步函数包括 I/O,例如数据库查询、HTTP 请求等。

因此这些函数将是异步的。

async 库将帮助您实现此处的目的。