Das Aufrufen von async.series in async.series führt zu einer unvorhersehbaren Ausgabe

Ich habe versucht, mit der Async-Bibliothek von caolan für node.js eine Funktion aufzurufen, die verwendet wirdasync.series in einer anderen Funktion, die async.series verwendet, aber ich kann die Funktionen immer noch nicht in der richtigen Reihenfolge ausführen, wie unten beschrieben:

In der Terminalausgabe wird die zweite Funktion ohne ersichtlichen Grund vor der ersten aufgerufen:

The "sys" module is now called "util". It should have a similar interface.
Starting the second step in the series
Value of b: undefined
Invoking the function firstStep
the value of toObtain is: [object Object]

Und hier ist der entsprechende Quellcode:

var im = require('imagemagick');
var async = require('async');

var toObtain;


var b;
async.series([

function (callback) {
    //It appears that this function is being invoked after the second function.
    //Why is this happening?
    firstStep();
    callback();
},

function (callback) {
    //Why is the output of this function being displayed BEFORE the output of the function above? It's the opposite of the order in which I'm calling the functions.
    console.log("Starting the second step in the series");
    console.log("Value of b: " + b);
}]);


function firstStep(){
    async.series([

    function (next) { // step one - call the function that sets toObtain
        im.identify('kittens.png', function (err, features) {
            if (err) throw err;
            console.log("Invoking the function firstStep");
            toObtain = features;
            //console.log(toObtain);
            b = toObtain.height;
            next(); // invoke the callback provided by async
        });
    },

    function (next) { // step two - display it
        console.log('the value of toObtain is: %s',toObtain.toString());
    }]);
}

Antworten auf die Frage(1)

Ihre Antwort auf die Frage