问题就是当我上传图片得时候有得时候可以上传成功有得时候失败失败得原因就是没有获取到file对象这是为什么呢,我用了图片压缩插件lrz请大神帮我看看是什么原因出现得问题这是我得代码上传凭证onUpload(item){varinput=document.getElementById("input");varfile=event.target.files[0];let_this=this;lrz(file,{width:400}).then(function(rst){rst.formData.append("sessionId",_this.data.sessionId);rst.formData.append("fileUpload1",file);rst.formData.append("referenceNo",item.paySeqId);rst.formData.append("clientType","wx");rst.formData.append("purpose","paymentBill");console.log(rst.fileLen);_this.$toast.loading({mask:true,message:"上传中..."});_this.$post(_this.$api.upload,rst.formData).then(res=>{console.log(res);if(res.data.flag==0){_this.$toast.clear_this.$toast.success("上传成功");varinput=document.getElementById("input");input.value="";}else{_this.$toast.fail(res.data.message);}});console.log(rst.formData);}).catch(function(error){console.log(error);}).always(function(){//不管成功或失败,都会执行});},
添加回答
举报
0/150
提交
取消