recherche

Maison  >  Questions et réponses  >  le corps du texte

node.js - nodejs中callback的用法疑问

function heavyCompute(n, callback) {
    var count = 0,
        i, j;

    for (i = n; i > 0; --i) {
        for (j = n; j > 0; --j) {
            count += 1;
        }
    }

    callback(count);
}

heavyCompute(10000, function (count) {
    console.log(count);
});

上面这段nodejs的代码,里面的回调函数callback ,在函数最后用callback输出了他,callback(count);

然后在下面的调用函数中,为啥最后的结果输入只输出了一次,有人帮忙讲下代码中callback替换成下面的函数的过程吗?

function (count) {
    console.log(count);
}

PHP中文网PHP中文网2767 Il y a quelques jours591

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-04-17 14:49:28

    你只执行了一次 callback,当然只输出一次了

    répondre
    0
  • Annulerrépondre