小程序
小游戏
企业微信
微信支付
扫描小程序码分享
下载mp3文件,还要输入后缀.mp3才行,对用户来说很不方便,
能否改进一下,可以指定文件类型,或者保留原来的文件类型,或文件名称都可以
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
let fileName = new Date().valueOf();
wx.downloadFile({
url: url,
filePath: wx.env.USER_DATA_PATH + '/' + fileName + '.xls',
header:{
"Content-Type":'application/vnd.ms-excel'
},
success (ret) {
console.log(ret);
if (ret.statusCode === 200) {
let filePath = ret.filePath;
console.log(filePath);
wx.saveFileToDisk({
filePath: filePath,
success: function(res) {
console.log(res)
wx.showToast({
title: '保存成功'
})
fail:function(res) {
uni.showToast({
title: '系统正忙,请稍后再试~',
icon: 'none',
duration: 2000
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,楼主后面你是怎么指定下路径的
我的不用输入后缀
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
let fileName = new Date().valueOf();
wx.downloadFile({
url: url,
filePath: wx.env.USER_DATA_PATH + '/' + fileName + '.xls',
header:{
"Content-Type":'application/vnd.ms-excel'
},
success (ret) {
console.log(ret);
if (ret.statusCode === 200) {
let filePath = ret.filePath;
console.log(filePath);
wx.saveFileToDisk({
filePath: filePath,
success: function(res) {
console.log(res)
wx.showToast({
title: '保存成功'
})
},
fail:function(res) {
uni.showToast({
title: '系统正忙,请稍后再试~',
icon: 'none',
duration: 2000
})
console.log(res)
}
})
}
}
})
你好,楼主后面你是怎么指定下路径的
我的不用输入后缀