snoop
snoop
  • 发布:2024-03-29 16:45
  • 更新:2024-03-31 21:28
  • 阅读:206

【报Bug】OPPO Reno2Z手机重启后,uni.getImageInfo失败

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 13.4

HBuilderX类型: 正式

HBuilderX版本号: 4.07

手机系统: Android

手机系统版本号: Android 13

手机厂商: OPPO

手机机型: oppo Reno2Z

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

操作步骤:

OPPO Reno2Z手机重启后,app调用uni.getImageInfo失败,尝试杀掉app进程 再进来就好了,要不然就一直失败

预期结果:

调用成功

实际结果:

调用失败

bug描述:

OPPO Reno2Z手机重启后,app调用uni.getImageInfo失败,尝试杀掉app进程 再进来就好了,要不然就一直失败

2024-03-29 16:45 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

刚用OPPO R17 试了,正常 ,跑一下这个例子

<template>  
    <view class="container">  
        <button @click="chooseImage">chooseImage</button>  
    </view>  
</template>  

<script>  
    export default {  
        onShow() {  
            let pages = getCurrentPages();  
            console.log(pages.length)  
        },  
        methods:{  
            chooseImage(){  
                uni.chooseImage({  
                    count: 1,  
                    sourceType: ['album'],  
                    success: function (res) {  
                        uni.getImageInfo({  
                            src: res.tempFilePaths[0],  
                            success: function (image) {  
                                console.log(image.width);  
                                console.log(image.height);  
                            }  
                        });  
                    }  
                });  

            }  
        }  
    }  
</script>  

<style lang="scss" scoped>  
    .container{  
        background-color: #999;  
        padding-bottom: env(safe-area-inset-bottom);  
    }  

</style>
  • snoop (作者)

    sourceType: 指定 camera, 重启手机之后立即调用

    2024-04-01 09:26

要回复问题请先登录注册