使用uni.downloadFile时发现返回的tempFilePath的后缀名是.unknown 以下是代码
/* 下载 */
onDown(e) {
let _this = this;
uni.downloadFile({
url:'http://iip.nat300.top/web/admin/file/download?wkFileId='+e,
success: (res) => {
if(res.statusCode === 200){
console.log(res.tempFilePath);
}
}
})
},