feathers
feathers copied to clipboard
feathersj rest client onupload progress no documentations
Hi, i try use feathersjs rest client using axios in upload large file i need show progress bar but there is no documentations https://docs.feathersjs.com/api/client/rest.html how config feathersjs client call onUploadProgress i used this code with no success
const config = {
headers: {
'Content-Type': 'multipart/form-data',
},
onUploadProgress: function(progressEvent) {
var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total)
console.log(percentCompleted)
}
}
this.uploadService.create(formData, config)
onUploadProgress never get called