//获取inputgetFile:function(e){this.file=e.target.files;},//创建creation:function(){console.log(this.file);letformData=newFormData();formData.append('file',this.file);formData.append('name','tomorrow');headers:{'Content-type':'multipart/form-data'}}).then(res=>{//创建成功})},之前是单图上传的,后台可以接收得到数据。现在需求变了改为多图上传我把this.file=e.target.files[0];改为this.file=e.target.files;按道理应该是这样的吧,可后台就接收不到数据了?
添加回答
举报
0/150
提交
取消