评论

wx.uploadFile formData后台获取不到内容?

wx.uploadFile formData后台获取不到内容?

试试将参数放在header里
uni.uploadFile({
url: ‘https://abc.com’,
filePath: tempFilePath,
name: ‘file’,
header: {
‘Token’: that.user.token,
‘Type’: that.selectitem
},
success: (uploadFileRes) => {

					}
				});
最后一次编辑于  2023-10-21  
点赞 0
收藏
评论

1 个评论

  • Davis 大卫
    Davis 大卫
    2023-10-24

    您还可以检查您从前端收到的错误。另一个需要注意的重要事项是,您的后端应该接收Multipart/formdata。

    uni.uploadFile({
    url: ‘https://abc.com’,
    filePath: tempFilePath,
    name: ‘file’,
    header: {
    ‘Token’: that.user.token,
    ‘Type’: that.selectitem
    },
    success: (uploadFileRes) => { 
     // ...
    },
    fail : (err) => {
    // ...注意这里的错误
    }
    
    2023-10-24
    赞同
    回复
登录 后发表内容