Skip to content
Advertisement

this.$refs.upload.submit(); not returning response Element-UI

I’m using element-ui and I’m uploading a file with:

JavaScript

How can I get the reponse from this.$refs.upload.submit();?

I already tried:

JavaScript

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

And add the methods to your methods object in vue:

JavaScript

An example would be: https://codepen.io/Freshdachs/pen/LYjWpZo

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement