前台代码:
uni.uploadFile({
url: apiDomain+'/a.php?m=userinfo&a=upload',
header:{
'Authorization': paramstr
},
filePath: imageSrc,
fileType: 'video',
name: 'file',
formData:{
'timestmp':timestmp
},
success: (uploadFileRes) => {
}
});
后台代码获取:
$timestmp = isset($_POST['timestmp']) ? trim($_POST['timestmp']) : "";
hbuilder x 版本:2.9.8.20201110
后台一直获取不到formData里面的值
这是怎么回事?哪里出问题了??
1 个回复
6***@qq.com - 窗外的春天
指定一下POST试试