uni.upload上传图片,服务器端接受的文件名没有后缀,无法判断是jpg还是png图片。
this.imageList.forEach(function(v) {
console.log(_this.title)
//上传
uni.uploadFile({
url:"http://localhost/upload/index.php",
fileType:"image",
filePath:v,
name:'file',
formData:{
"title":_this.title,
"date":_this.date,
},
success:function(e){
if(e.statusCode == 200) {
console.log(e.data)
}
}
});
});
wxlcxy
你可以使用返回的另一个参数来判断的。如你选择照片后还有一个参数叫做tempFiles你在他里面可以看到图片的名字和路径。那个名字可以判断图片的类型好像。你可以用这个
2020-08-08 11:46