2020
10-10
10-10
vue中element 的upload组件发送请求给后端操作
1.用到了before-upload属性,用于在上传文件前的校验,并且发送请求给后端,传输格式进行文件流传输什么都不用设置,action属性随便设置,不能为空即可!在before-upload属性的方法中的代码如下:var_this=this;debugger;//varfiles=file.target.files[0];debugger;constisJPG=file.type==="image/jpeg";constisLt2M=file.size/1024/1024<2;if(!isJPG){this.$message.error("上传头像...
继续阅读 >