Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

上传文件时,怎样返回上传进度给前台?

$
0
0

我通过formidable中间件,获取文件上传进度,怎样返回给前台呢?

form.on('progress', function(bytesReceived, bytesExpected) {
            console.log(`bytesReceived:${Math.round(bytesReceived/bytesExpected*100)}`)
        });

Viewing all articles
Browse latest Browse all 14821

Trending Articles