导航栏: 首页 评论列表

nodejs flow 异步变同步的问题

默认分类 2013-05-22 17:52:54

nodejs flow 异步变同步的问题

function aa(next){
    next();
}

function doit(){
    //todo
    flow.exec(function(){
        //aa(this);
        this();
    },
    function(){
        alert(123);
    });
}


>> 留言评论