我使用的是node.js-用强大的包表达后端。我试图实现一个进度条,并决定使用强大的&websockets:
const create = (req, res, io) => {
logger.debug(`EXEC create material`)
const form = new formidable.IncomingForm()
form.encoding = 'utf-8'
form.keepExtensions = true
form.multiples = true
form.maxFileSize = 600 * 1024 * 1024 // 600MB instead of 200MB (default value)
// form.uploadDir = `${__dirname}/uploads`
let oldValue = 0
form.on('progress', (bytesReceived, bytesExpected) => {
let currentValue = (parseFloat(bytesReceived) / parseFloat(bytesExpected)) * 100
if ((currentValue - oldValue) > 1 || currentValue === 100) {
oldValue = currentValue
io.emit('FILE_UPLOAD_STATUS', currentValue)
console.log('FILE_UPLOAD_STATUS', currentValue)
}
})
...
然而,似乎所有文件上传后都可以处理文件并显示进度?文件可能很大,因此我在浏览器中看到一个进度条,直到它在很短的时间内从0%变为100%为止。
我应该更改代码并从xhr请求中获取进度吗?
最后,我决定将其成功移动到浏览器中的js中。使用axios是处理进度的最简单/最快的方法。这是我感兴趣的代码(React应用):
axios.request({
method: "POST",
url: `${PRIVATE_API_ROOT}/materials`,
data: formData,
headers: { Authorization: `Bearer ${token}` },
onUploadProgress: ProgressEvent => {
this.setState({
progressStatus: parseFloat(ProgressEvent.loaded / ProgressEvent.total * 100).toFixed(2),
})
}
}).then(data => {
this.setState({
progressStatus: 100,
loading: false,
error: ''
})
}).catch(function (error) {
//handle error
this.setState({ error: error.message })
});
```