為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴
發(fā)表日期:2019-11 文章編輯:小燈 瀏覽次數(shù):5166
之前寫個(gè)一個(gè)版本的[多圖下載],重構(gòu)進(jìn)行了代碼升級(jí)讓代碼更加簡(jiǎn)介
分為兩步:
第一獲取保存到相冊(cè)權(quán)限
第二下載圖片
主要涉及兩個(gè)文件,index.js 和download.js
另外現(xiàn)在如果有圖片下載失敗也彈出下載完成后續(xù)需要優(yōu)化
/**
* 獲取相冊(cè)權(quán)限
*/
export function wxSaveAuth() {
return new Promise((resolve, reject) => {
wx.getSetting({
success(res) {
if (!res.authSetting['scope.writePhotosAlbum']) {
// 如果沒(méi)有寫入權(quán)限,則獲取寫入相冊(cè)權(quán)限
wx.authorize({
scope: 'scope.writePhotosAlbum',
success() {
resolve()
},
fail(err) {
reject(err)
// 用戶拒絕授權(quán)
wx.showModal({
content: '檢測(cè)到您沒(méi)打開(kāi)捷買士的相冊(cè)權(quán)限,是否去設(shè)置打開(kāi)?',
confirmText: '確認(rèn)',
cancelText: '取消',
success(res) {
if (res.confirm) {
wx.openSetting({
success: res => {}
})
}
}
})
}
})
} else {
resolve()
}
},
fail(e) {
reject(e)
}
})
})
}
/**
* 多文件下載并且保存
* @param {Array} urls 網(wǎng)絡(luò)圖片數(shù)組
*/
export function downloadImgs(urls) {
wx.showLoading({
title: '圖片下載中',
mask: true
})
const imageList = []
// 循環(huán)數(shù)組
for (let i = 0; i < urls.length; i++) {
imageList.push(getTempPath(urls[i]))
}
const loadTask = []
let index = 0
while (index < imageList.length) {
loadTask.push(
new Promise((resolve, reject) => {
// 將數(shù)據(jù)分割成多個(gè)promise數(shù)組
Promise.all(imageList.slice(index, (index += 8)))
.then(res => {
resolve(res)
})
.catch(err => {
reject(err)
})
})
)
}
// Promise.all 所有圖片下載完成后彈出
Promise.all(loadTask)
.then(res => {
wx.showToast({
title: '下載完成',
duration: 3000
})
})
.catch(err => {
wx.showToast({
title: `下載完成`,
icon: 'none',
duration: 3000
})
})
}
/**
*
* @param {String} url 單張網(wǎng)絡(luò)圖片
*/
//下載內(nèi)容,臨時(shí)文件路徑
function getTempPath(url) {
return new Promise((resolve, reject) => {
wx.downloadFile({
url: url,
success: function(res) {
var temp = res.tempFilePath
wx.saveImageToPhotosAlbum({
filePath: temp,
success: function(res) {
return resolve(res)
},
fail: function(err) {
reject(url + JSON.stringify(err))
}
})
},
fail: function(err) {
reject(url + JSON.stringify(err))
}
})
})
}
// pages/save-imgs/index.js
import { wxSaveAuth, downloadImgs } from '../../utils/download'
Page({
/**
* 頁(yè)面的初始數(shù)據(jù)
*/
data: {
urls: [
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4',
'https://avatars0.githubusercontent.com/u/35954879?s=120&v=4'
]
},
/**
* 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載
*/
onLoad: function(options) {},
download() {
// 獲取保存到相冊(cè)權(quán)限
wxSaveAuth().then(res => {
// 保存多張圖片到相冊(cè)
downloadImgs(this.data.urls)
})
},
})
git clone https://github.com/sunnie1992/sol-weapp.git
掃描添加下方的微信并備注 Sol 加交流群,交流學(xué)習(xí),及時(shí)獲取代碼最新動(dòng)態(tài)。
如果對(duì)你有幫助送我一顆小星星(づ ̄3 ̄)づ╭?~
日期:2019-11 瀏覽次數(shù):5525
日期:2019-11 瀏覽次數(shù):11983
日期:2019-11 瀏覽次數(shù):4352
日期:2019-11 瀏覽次數(shù):5387
日期:2019-11 瀏覽次數(shù):5261
日期:2019-11 瀏覽次數(shù):7180
日期:2019-11 瀏覽次數(shù):5166
日期:2019-11 瀏覽次數(shù):15768
日期:2019-11 瀏覽次數(shù):4719
日期:2019-11 瀏覽次數(shù):6518
日期:2019-11 瀏覽次數(shù):5372
日期:2019-11 瀏覽次數(shù):4564
日期:2019-11 瀏覽次數(shù):10764
日期:2019-11 瀏覽次數(shù):8320
日期:2019-11 瀏覽次數(shù):5079
日期:2019-11 瀏覽次數(shù):4311
日期:2019-11 瀏覽次數(shù):8953
日期:2019-11 瀏覽次數(shù):4649
日期:2019-11 瀏覽次數(shù):4846
日期:2019-11 瀏覽次數(shù):4866
日期:2019-11 瀏覽次數(shù):4477
日期:2019-11 瀏覽次數(shù):5027
日期:2019-11 瀏覽次數(shù):10282
日期:2019-11 瀏覽次數(shù):5460
日期:2019-11 瀏覽次數(shù):5437
日期:2019-11 瀏覽次數(shù):4885
日期:2019-11 瀏覽次數(shù):12330
日期:2019-11 瀏覽次數(shù):7354
日期:2019-11 瀏覽次數(shù):7905
日期:2019-11 瀏覽次數(shù):4858
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.