From d230b5a85d0d6450513b61978c3c9acf5b6a518e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BB=93=E5=8F=91=E5=8F=97=E9=95=BF=E7=94=9F?= Date: Mon, 1 Jul 2019 16:51:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E6=98=93=E4=BA=91=E5=AD=98=E5=82=A8?= =?UTF-8?q?=E7=9A=84=E6=8E=A5=E5=8F=A3=E8=B7=AA=E4=BA=86=E5=90=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/JavaScript/优雅写异步与循环.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/JavaScript/优雅写异步与循环.md b/source/_posts/JavaScript/优雅写异步与循环.md index 0f642ef..e684436 100644 --- a/source/_posts/JavaScript/优雅写异步与循环.md +++ b/source/_posts/JavaScript/优雅写异步与循环.md @@ -46,7 +46,7 @@ Promise.all(arr.map(show)).then(() => { }) ``` 为了比较执行性能的差异, 加了一个计时 ( Nodejs环境运行 ) -![Promise.all时间](/images/JavaScript/Promise.all时间.png) +![Promise.all时间](/images/JavaScript/Promise-all时间.png) #### async/await ```javascript