码迷,mamicode.com
首页 > 其他好文 > 详细

H5 uni.uploadFile后台接收不到文件的解决方案

时间:2021-06-18 18:55:59      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:bsp   res   nbsp   api   image   syn   select   tps   一个   

今天遇到一个很奇怪的问题,通过使用uni.uploadFile上传文件时后端接收不到文件,查过很多资料,原来是自定义了header的Content-Type问题。取消即可,另把自定义文件上传的代码贴出来。

上传文件插件

  <uni-file-picker file-extname="jpg,jpeg,gif,png" @select="selectFile"  ref="files" :auto-upload="false"  limit="1" fileMediatype="image"/>
data() {return {fileInfo:[]}

  select文件动作保存文件信息

methods: {
			selectFile(e){this.fileInfo=e.tempFiles[0];},
......

  

                          uni.uploadFile(
                        {
                            url:"https://www.chinayq.com/api/user/user.ashx",
                            filePath:that.fileInfo.url,
                            name:"file",
                            header: {
                            //"Content-Type": "multipart/form-data", // 不要自定义Content-Type头
                            "token": uni.getStorageSync(token) // token验证
                            },
                            //formData:that.formData,
                            success:function(res)
                            {
                                
                            }
                            
                        });        
                    })}

 

H5 uni.uploadFile后台接收不到文件的解决方案

标签:bsp   res   nbsp   api   image   syn   select   tps   一个   

原文地址:https://www.cnblogs.com/fogwang/p/14894791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!