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(()=>{
// 失败后的逻辑
})
大家有什么问题或技术上的想法可以在此与大家分享,也可以加入前端爱好者QQ群(141999928)一起学习进步:
【幸凡前端技术交流群】
如果您觉得本文的内容对您的学习有所帮助,捐赠与共勉,支付宝(左)或微信(右)