down() {
let that = this
uni.downloadFile({
url: `${that.axiosUrl}/aka-download?newsId=${that.options}`,
success: (res) => {
if (res.statusCode == 200) {
uni.showToast({
title: '下载成功,正在打开...',
icon: 'exception',
duration: 850
});
setTimeout(() => {
console.log('下载成功', res.tempFilePath);
wx.openDocument({
showMenu: true, //打开右上角分享功能
fileType: 'pdf',
filePath: res.tempFilePath,
success: function (res1) {
console.log('打开文档成功', res1)
}
})
}, 1000)
}
}
});
}
uniapp 小程序点击下载文件
最新推荐文章于 2024-08-08 17:14:10 发布
关键词由CSDN通过智能技术生成