3***@qq.com
3***@qq.com
  • 发布:2025-03-19 15:14
  • 更新:2025-03-19 15:14
  • 阅读:42

【报Bug】wgt 热更新后 某些机型出现 图片显示不出来

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: Windows 11 家庭中文版

HBuilderX类型: 正式

HBuilderX版本号: 3.99

手机系统: Android

手机系统版本号: Android 15

手机厂商: 华为

手机机型: nova13

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

index.vue

onShow(){  
checkUpdate();  
            if (uni.getStorageSync("downloadFilePath")) {  
                uni.setStorageSync('IsDownload', false)  
                plus.runtime.install(uni.getStorageSync("downloadFilePath"), {  
                    force: false  
                },  
                    (result : PlusRuntimeWidgetInfo) => {  
                        console.error('install success', JSON.stringify(result))  
                        uni.setStorageSync('isInstall', false)  
                        uni.setStorageSync('IsDownload', true)  
                        uni.setStorageSync('downloadFilePath', '')  
                        // #ifdef APP-PLUS  
                        plus.runtime.restart();  
                        // #endif  
                    }  
                ),  
                    (result : any) => {  
                        uni.setStorageSync('isInstall', false)  
                        uni.setStorageSync('downloadFilePath', '')  
                    };  
            } else {  
                uni.setStorageSync('IsDownload', true)  
            }  
}
/*  
 * check-update的内容  
 */  
import toast from '@/utils/function/toast';  
import callCheckVersion from './call-check-version'  
//  isDebug为true测试环境  为false生产环境  
const isDebug:boolean = false;  
// 推荐再App.vue中使用  
const PACKAGE_INFO_KEY = '__package_info__';  
let downLoadPath:string = '';  
let downLoadTask:any = null;  
export default function () {  
    return new Promise((resolve, reject) => {  

        callCheckVersion().then(async (e: any) => {  
            if (!e.result) return;  
            const {  
                code,  
                message,  
                is_silently, // 是否静默更新  
                url, // 安装包下载地址  
                platform, // 安装包平台  
                type // 安装包类型  
            } = e.result;  

            // 此处逻辑仅为实例,可自行编写  
            if (code > 0) {  
                // 腾讯云和阿里云下载链接不同,需要处理一下,阿里云会原样返回  
                const {  
                    fileList  
                } = await uniCloud.getTempFileURL({  
                    fileList: [url]  
                });  
                if (fileList[0].tempFileURL)  
                    e.result.url = fileList[0].tempFileURL;  

                    resolve(e)  
                // 静默更新,只有wgt有  
                uni.getNetworkType(  
                    {success:(res) => {  
                        let  netWork =isDebug? (res.networkType == "4g"||res.networkType == "5g"   
                        ||  res.networkType == 'wifi'): (res.networkType == "4g"||res.networkType == "5g" );  

                        if (netWork   
                        ) {  
                            if (is_silently && uni.getStorageSync("IsDownload")) {  

                                downLoadTask= uni.downloadFile({  
                                       url: e.result.url,  
                                       success: res => {  
                                           console.log(res,'IsDownload')  

                                           if (res.statusCode == 200) {  
                                               uni.setStorageSync('IsDownload', false)  
                                               uni.setStorageSync('downloadFilePath', res.tempFilePath)  
                                                uni.setStorageSync('isInstall', true)  
                                           }  
                                       },  
                                       fail: (err) => {  

                                           uni.setStorageSync('IsDownload', true)  
                                           console.log(err, 3000)  

                                       }  
                                   });  
                               downLoadTask.onProgressUpdate((res)=>{  
                                   console.log(res, 'onProgressUpdate')  
                               })     
                                   return ;  
                               }  
                        } else {  
                            downLoadTask.abort();  
                            downLoadTask = null;  
                            uni.setStorageSync('IsDownload', true)  
                        }  
                    }, fail:(res)=>{  
                        downLoadTask.abort();  
                        downLoadTask = null;  
                        uni.setStorageSync('IsDownload', true)  
                    }}  
                );  

                /**  
                 * 提示升级二  
                 * 官方适配的升级弹窗,可自行替换资源适配UI风格  
                 */  
                // uni.setStorageSync(PACKAGE_INFO_KEY, e.result)  
                // uni.navigateTo({  
                //     url: `/uni_modules/uni-upgrade-center-app/pages/upgrade-popup?local_storage_key=${PACKAGE_INFO_KEY}`,  
                //     fail: (err) => {  
                //         console.error('更新弹框跳转失败', err)  
                //         uni.removeStorageSync(PACKAGE_INFO_KEY)  
                //     },  
                //  success: (res) =>{  
                //      console.log(res, 'will')  
                //  }  
                // })  

                // return   

            } else if (code < 0) {  
                // TODO 云函数报错处理  
                console.error(message)  
                return reject(e)  
            }  
            return resolve(e)  
        }).catch(err => {  
            // TODO 云函数报错处理  
            console.error(err)  

            reject(err)  
        })  
    });  
}

操作步骤:

wgt上传更新 然后低版本更新 更新后 图片不展示

预期结果:

展示正常

实际结果:

展示不正常

bug描述:

wgt热更新后 某些机型出现 首页图标svg展示不出来

2025-03-19 15:14 负责人:无 分享
已邀请:

要回复问题请先登录注册