博客列表 >在使用axios进行上传文件的坑

在使用axios进行上传文件的坑

戈壁骆驼的博客
戈壁骆驼的博客原创
2018年11月08日 06:35:403201浏览

在进行文件上传后台报错

在使用axios进行文件上传时,后台的grails程序经常或出现不能获取file的情况 No signature of method

经过排查不是后台程序的问题,在前端上传的时候,需要对数据进行处理 

如下处理就能正常获取上传的文件了


 html:

 选择文件:

<input type="file" name="fileUpload" id="fileUp" @change="change($event)" ref="inputFile" >

 vuejs:

change:function(event){
        this.file = event.target.files[0]
      },
      upFile:function(event){
        var data = new FormData();//重点在这里 如果使用 var data = {}; data.inputfile=... 这样的方式不能正常上传
        data.append("inputFile",this.file)
        data.append("title","thisAGoodTitle")
        console.log(data)
        // var cfg = {
        //   'Content-type':'multipart/form-data'
        // }
         let headers = {headers: {"Content-Type": "multipart/form-data"}}
            this.$http.post("http://localhost:8081/api/peixun/vedio/uploadVideo",data,headers).then(function(data){
            console.log(data);
          },function(err){
            console.log("err------: ");
            console.log(err);
          })
      }

后端:

def file = request.getFile('inputFile')
file.transferTo(new File(path,newName))//写到磁盘

这样就能将前端的文件上传到服务器端了 

如果不使用这种header,直接将文件按照如下上传 也是可以正常完成上传的


 // let headers = {headers: {"Content-Type": "multipart/form-data"}}
this.$http.post("http://localhost:8081/api/peixun/vedio/uploadVideo",data).then(function(data){...})

1

2

到此,axios进行文件上传的问题解决了 

标记此文,以后遇到这个问题不用到处找了

--------------------- 

作者:shsongtao 

来源:CSDN 

原文:https://blog.csdn.net/shsongtao/article/details/80707467 

版权声明:本文为博主原创文章,转载请附上博文链接!


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议