uniapp 版本更新迭代

versionNum() {
                    plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
                        console.log(wgtinfo.version); //版本号
                        updateEdition({    //后端接口查看是否需要更新
                            version: wgtinfo.version,
                            type: 'driver'
                        }).then((res) => {
                                console.log(res.data.code)
                            if (res.data.code== 202) {
                                 uni.showToast({
                                     title: res.data.msg,
                                     icon: 'none'
                                 });
                            } else {
                                this.userUrl = res.data.data.driver_url
                                console.log(res.data.data.driver_url)
                                    uni.showModal({
                                    title: "发现新版本,请确认更新",
                                    content:res.data.data.driver_update_content,
                                    showCancel: false,
                                    success: (res) => {
                                        if (res.confirm) {
                                            //设置 最新版本apk的下载链接
                                            var downloadApkUrl = 'https:'+this.userUrl;
                                            var dtask = plus.downloader.createDownload(
                                                downloadApkUrl, {},
                                                function(d, status) {
                                                    // 下载完成  
                                                    if (status == 200) {
                                                        plus.runtime.install(plus.io
                                                            .convertLocalFileSystemURL(
                                                                d.filename), {}, {},
                                                            function(error) {
                                                                uni.showToast({
                                                                    title: '安装失败',
                                                                    duration: 1500
                                                                });
                                                            })
                                                    } else {
                                                        uni.showToast({
                                                            title: '更新失败',
                                                            duration: 1500
                                                        });
                                                    }
                                                });
                                            try {
                                                dtask.start(); // 开启下载的任务
                                                var prg = 0;
                                                var showLoading = plus.nativeUI.showWaiting(
                                                    "正在下载"); //创建一个showWaiting对象 
                                                dtask.addEventListener('statechanged', function(
                                                    task,
                                                    status
                                                ) {
                                                    // 给下载任务设置一个监听 并根据状态  做操作
                                                    switch (task.state) {
                                                        case 1:
                                                            showLoading.setTitle("正在下载");
                                                            break;
                                                        case 2:
                                                            showLoading.setTitle(
                                                                "已连接到服务器");
                                                            break;
                                                        case 3:
                                                            prg = parseInt(
                                                                (parseFloat(task
                                                                        .downloadedSize
                                                                    ) /
                                                                    parseFloat(task
                                                                        .totalSize)) *
                                                                100
                                                            );
                                                            showLoading.setTitle("  正在下载" +
                                                                prg + "%  ");
                                                            break;
                                                        case 4:
                                                            plus.nativeUI.closeWaiting();
                                                            //下载完成
                                                            break;
                                                    }
                                                });
                                            } catch (err) {
                                                plus.nativeUI.closeWaiting();
                                                uni.showToast({
                                                    title: '更新失败-03',
                                                    mask: false,
                                                    duration: 1500
                                                });
                                            }
                                        } else if (res.cancel) {}
                                    }
                                })
                             
                            }
                        })
                    })
                },

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值