jgj_app
jgj_app
  • 发布:2024-08-01 13:41
  • 更新:2024-08-01 14:22
  • 阅读:233

uni app vue3 获取电量

分类:HBuilderX

uni-getbatteryinfo 下载插件导出项目,直接报错

2024-08-01 13:41 负责人:无 分享
已邀请:
套马杆的套子

套马杆的套子 - 没有解决不了的问题,只有解决不完的问题

下载这个插件了么,看我附件,新创建的vue3项目,下载插件后,重新运行后,没发现问题
https://ext.dcloud.net.cn/plugin?id=9295

<template>  
    <view>  
        <button @click="test">测试</button>  
    </view>  
</template>  
<script>  
    export default {  
        data() {  
            return {  
            }  
        },  
        methods: {  
            test() {  
                // 获取电量信息  
                uni.getBatteryInfo({  
                    success(res) {  
                        console.log(res);  
                        uni.showToast({  
                            title: "当前电量:" + res.level + '%',  
                            icon: 'none'  
                        });  
                    }  
                })  
            }  

        }  
    }  
</script>
jgj_app

jgj_app (作者)

<template>
<div>
<button @click="test">测试</button>
</div>
</template>

<script setup>
import {
onMounted
} from 'vue'
const base64 = '{name:111}'
const arrayBuffer = uni.base64ToArrayBuffer(base64)

function test() {  
    uni.getBatteryInfo({  
        success(res) {  
            console.log(res);  
            uni.showToast({  
                title: "当前电量:" + res.level + '%',  
                icon: 'none'  
            });  
        }  
    })  
}  
onMounted(() => {  
    console.log(arrayBuffer)  
    uni.setNavigationBarTitle({  
        title: '新的标题33'  
    });  

    uni.setNavigationBarColor({  
        frontColor: '#ffffff',  
        backgroundColor: '#ff0000',  
        animation: {  
            duration: 400,  
            timingFunc: 'easeIn'  
        }  
    })  

})  

</script>

jgj_app

jgj_app (作者)

1222

要回复问题请先登录注册