miniprogram-demo/packageAPI/pages/download-file/download-file.js

18 lines
406 B
JavaScript
Raw Normal View History

2020-12-09 14:20:10 +08:00
// pages/API/download-file/download-file.js
Page({
downloadImage() {
const self = this
wx.downloadFile({
2020-12-10 18:45:10 +08:00
url: 'https://nextcloud.finogeeks.club/s/GF2zYNNnqTQ4gXG/preview', // 文件资源
2020-12-09 14:20:10 +08:00
success: res => {
console.log('downloadFile success, res is', res)
self.setData({
imageSrc: res.tempFilePath
})
},
fail: console.error
})
}
})