码迷,mamicode.com
首页 > Web开发 > 详细

Node.js 使用回调函数实现串行流程控制

时间:2017-09-02 19:04:38      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:bsp   col   nod   函数   class   last   fun   ast   set   

下面是一个使用Node.js回调函数实现串行流程控制的示例:

setTimeout(function() {
    console.log(‘I excute first.‘);
    setTimeout(function() {
        console.log(‘I excute next.‘);
        setTimeout(function() {
            console.log(‘I excute last.‘);
        }, 100);
    }, 500);
}, 1000);

 

Node.js 使用回调函数实现串行流程控制

标签:bsp   col   nod   函数   class   last   fun   ast   set   

原文地址:http://www.cnblogs.com/sumuzhe/p/7467193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!