async异步流程控制神器

Posted lightsong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了async异步流程控制神器相关的知识,希望对你有一定的参考价值。

async

https://www.npmjs.com/package/async

Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. Although originally designed for use with Node.js and installable via npm install async, it can also be used directly in the browser. A ESM version is included in the main async package that should automatically be used with compatible bundlers such as Webpack and Rollup.

A pure ESM version of Async is available as async-es.

For Documentation, visit https://caolan.github.io/async/

For Async v1.5.x documentation, go HERE

 

API

https://github.com/caolan/async/blob/v1.5.2/README.md#waterfall

Control Flow

 

动画

https://github.com/fanqingsong/async_animation

index.js

import ‘./css/style.css‘;
import ‘./sass/index.scss‘;

var async = require("async");

window.onload = () => 
    let salutions = document.querySelectorAll("#salutions>div");
    for(let one of salutions)
        one.style.display = "none";
    

    async.waterfall([
        function(callback) 
            salutions[0].style.display = "flex";

            setTimeout(callback, 1000);
        ,
        function(callback) 
            salutions[1].style.display = "flex";

            setTimeout(callback, 1000);
        ,
        function(callback) 
            salutions[2].style.display = "flex";

            setTimeout(callback, 1000);
        ,
        function(callback) 
            salutions[3].style.display = "flex";

            setTimeout(callback, 1000);
        ,
        function(callback) 
            callback(null);
        
    ], function (err, result) 
        // result now equals ‘done‘
    );
;

 

html

    <div class="c-Sticky">
        <div class="c-Sticky-bd">
            <h1 style="text-align: center;">Async Show</h1>

            <div id="salutions" style="font-size: xx-large; color:blue;  display: flex; justify-content:center;">
                <div style="display:flex;width:200px;height:200px; justify-content:center;align-items: center ; margin: 5px; background-color: steelblue"></div>
                <div style="display:flex;width:200px;height:200px; justify-content:center;align-items: center ; margin: 5px; background-color: antiquewhite"></div>
                <div style="display:flex;width:200px;height:200px; justify-content:center;align-items: center ; margin: 5px; background-color: azure"></div>
                <div style="display:flex;width:200px;height:200px; justify-content:center;align-items: center ; margin: 5px; background-color: beige"></div>
            </div>

        </div>
    </div>

 

效果

 显示从左到右每个一秒显示一个方块字。

技术图片

 

以上是关于async异步流程控制神器的主要内容,如果未能解决你的问题,请参考以下文章

珠峰培训node正式课笔记 -- async任务流程控制,异步流程控制

node.js异步控制流程 回调,事件,promise和async/await

async异步流程控制

Async 异步转同步详细流程解释

nodejs异步流程控制

async await promise