function getVideoStting(url) {
return new Promise((reslove, reject) => {
if (url) {
wx.showLoading({
title: '保存中',
mask: true
})
wx.getSetting({
success(res) {
wx.downloadFile({
url: url,
success: function (res) {
console.log(res)
var temp = res.tempFilePath
wx.saveVideoToPhotosAlbum({
filePath: temp,
success: function (res) {
reslove(res)
},
fail: function (err) {
wx.hideLoading()
reject(err)
}
})
},
fail: function (err) {
wx.hideLoading()
wx.utils.alert('保存失败')
}
})
},
fail(res) {
}
})
} else {
wx.showLoading({
title: '请稍等',
mask: true
})
setTimeout(() => {
wx.hideLoading()
}, 1000)
}
})
}
module.exports = {
getVideoStting
}
然后 调用方法就可以啦
添加到页面使用
var utils = require('./utils/utils.js'),
wx.utils = utils
wx.utils.getVideoStting(url).then((){
//成功的逻辑
}).catch(()=>{
// 失败后的逻辑
})