I’m using element-ui and I’m uploading a file with:
JavaScript
x
2
1
this.$refs.upload.submit();
2
How can I get the reponse from this.$refs.upload.submit();
?
I already tried:
JavaScript
1
10
10
1
.then(response => {
2
this.success = true;
3
})
4
.catch(errors => {
5
if(errors.status === 422 && this.hasError('Exists')) {
6
this.Link= true;
7
}
8
this.success = false;
9
})
10
I know the submit()
needs some sort of promise. I just don’t know what to change, I just want to get the error messages.
Advertisement
Answer
I am not to familiar with element-ui but custom components almost always have events that trigger when certain functions finish.
In this case looking at the documentation:
https://element.eleme.io/#/en-US/component/upload#upload
What you need is on-success
or on-error
.
So you just have to add functions to your el-upload
component:
JavaScript
1
4
1
<el-upload
2
:on-error="onError"
3
:on-success="onSuccess">
4
And add the methods to your methods
object in vue:
JavaScript
1
11
11
1
methods: {
2
submitUpload() {
3
this.$refs.upload.submit();
4
},
5
onError(){
6
console.log("error");
7
},onSuccess(){
8
console.log("success");
9
}
10
}
11
An example would be: https://codepen.io/Freshdachs/pen/LYjWpZo