0122微信小程序保存视频到本地(封装)阅读(3499)条2021/1/22 14:23:06
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.saveVideoToPho...阅读全文
Taget:小程序 视频 封装 Promise