- 当前 Bug 的表现(可附上截图)
- 预期表现
返回获取到的文件信息
- 复现路径
- 提供一个最简复现 Demo
recorderManager.onStop((res) => {
const { tempFilePath } = res;
wx.uploadFile({
url: app.globalData.url + 'luyin/uploadluyin',
filePath: tempFilePath,
name: 'file',
success: function (res) {
console.log(res);
}
})
})
后台获取报错 拿不到file文件
echo $_FILES['file'];