zoukankan      html  css  js  c++  java
  • 小程序多图片下载 迭代

    picArr=['sdfasfasf.jpg','sdafasfdsaf.jpg']
    //下载内容
    xiazaiTupian: function (picArr,index) {
    let that=this;
    index=index||0;
    console.log(picArr[index])
    wx.downloadFile({
    url: picArr[index],
    success: function (res) {
    var temp = res.tempFilePath
    console.log(index)
    console.log(temp)
    wx.saveImageToPhotosAlbum({
    filePath: temp,
    success: function () {
    index+=1;
    if (index < picArr.length){
    that.xiazaiTupian(picArr, index);
    }else{
    wx.showToast({
    title: '下载完成',
    })
    }
     
    },
    fail: function () {
    index += 1;
    if (index < picArr.length) {
    that.xiazaiTupian(picArr, index);
    } else {
    wx.showToast({
    title: '下载完成',
    })
    }
    wx.showToast({
    title: '第' + (index+1) + '下载失败',
    })
    }
    })
    },
    fail: function (res) {
    wx.showToast({
    title: '下载失败',
    })
    }
    })

    },
  • 相关阅读:
    java 问题记录
    java 构造方法
    java 接口
    java 抽象类
    java 封装
    java 面向对象
    java 集合小练习 超市库存管理系统
    linux常用指令
    个人简历表格
    html5 表格文档常用指令
  • 原文地址:https://www.cnblogs.com/dianzan/p/9639300.html
Copyright © 2011-2022 走看看