国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

微信小程序保存多張圖片的實(shí)現(xiàn)方法

2019-11-19 12:02:21
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

前言

使用promise 隊(duì)列,保存多張圖片到手機(jī)相冊(cè)

問(wèn)題:有些手機(jī)會(huì)出現(xiàn)只能保存五張圖片,報(bào)錯(cuò)信息:無(wú)法寫(xiě)入

promise需要好好學(xué)習(xí)

核心代碼

// pages/saveImgs/index.jsimport { writePhotosAlbum } from '../../utils/util'Page({ /**  * 頁(yè)面的初始數(shù)據(jù)  */ data: {  list: [   'https://timgs.top1buyer.com/admin/special/special_img_20190301160008479.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160013201.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160015969.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160025498.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160031519.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160042689.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160108243.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190301160111756.jpg',   'https://timgs.top1buyer.com/admin/special/special_img_20190304160141454.jpg'  ],  loading:false }, /**  * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載  */ onLoad: function(options) {}, // 下載圖片 downloadImgs() {  var _this = this  // 獲取保存到相冊(cè)權(quán)限  writePhotosAlbum(   function success() {    wx.showLoading({     title: '加載中',     mask: true    })    // 調(diào)用保存圖片promise隊(duì)列    _this     .queue(_this.data.list)     .then(res => {      wx.hideLoading()      wx.showToast({       title: '下載完成'      })     })     .catch(err => {      wx.hideLoading()      console.log(err)     })   },   function fail() {    wx.showToast({     title: '您拒絕了保存到相冊(cè)'    })   }  ) }, // 隊(duì)列 queue(urls) {  let promise = Promise.resolve()  urls.forEach((url, index) => {   promise = promise.then(() => {    return this.download(url)   })  })  return promise }, // 下載 download(url) {  return new Promise((resolve, reject) => {   wx.downloadFile({    url: url,    success: function(res) {     var temp = res.tempFilePath     wx.saveImageToPhotosAlbum({      filePath: temp,      success: function(res) {       resolve(res)      },      fail: function(err) {       reject(res)      }     })    },    fail: function(err) {     reject(err)    }   })  }) }})

項(xiàng)目案例

github地址

git clone https://github.com/sunnie1992/soul-weapp.git

直接用微信小程序開(kāi)發(fā)工具打開(kāi)就可以看到案例了

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 长宁县| 南京市| 鱼台县| 宜宾市| 咸阳市| 五台县| 光山县| 清水县| 汪清县| 鹤峰县| 商洛市| 斗六市| 高雄县| 永州市| 防城港市| 疏附县| 镇沅| 阳西县| 岳阳县| 宝应县| 汕尾市| 西乡县| 定襄县| 金寨县| 修水县| 尉犁县| 资溪县| 柳州市| 全椒县| 璧山县| 霍州市| 屯留县| 邢台市| 和硕县| 阳信县| 新疆| 昭平县| 南涧| 锡林郭勒盟| 隆昌县| 特克斯县|