项目使用element-ui upload组件上传文件场景。很是希望element能通过axios发送http, 这样就可以使用 axios interceptor统一处理所有http调用的架构。
如果不能用axios的话,对于后端发来的异常(未登录、无权限、各种错误等),还需要再使用element uoload组件时再处理一遍,麻烦。
<el-upload
:with-credentials="true"
name="file"
action="http://localhost:9082/fileupload"
:data = "uploadParam"
:show-file-list="false"
:on-success="uploadSuccess"
:on-error="uploadError"
:before-upload="beforeUpload">
<i class="fa fa-upload"></i>
</el-upload>
可以通过 el-upload 的 beforeUpload方法中通过aixos post。方法return false,这样el-upload就不会再post了。