uni-getbatteryinfo 下载插件导出项目,直接报错
- 发布:2024-08-01 13:41
- 更新:2024-08-01 14:22
- 阅读:233
套马杆的套子 - 没有解决不了的问题,只有解决不完的问题
下载这个插件了么,看我附件,新创建的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 (作者)
<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 (作者)
我就是下载这个,让后就报错了
2024-08-01 14:00
jgj_app (作者)
删除在下载还是不行
2024-08-01 14:05
jgj_app (作者)
你 hb 是 4.24 版本的么
2024-08-01 14:06
套马杆的套子
回复 jgj_app: 对,是4.24
2024-08-01 14:13
套马杆的套子
回复 jgj_app: 下载后重新运行了么
2024-08-01 14:14
jgj_app (作者)
回复 套马杆的套子: 重新运行了啊,我还是关掉运行的
2024-08-01 14:18
套马杆的套子
回复 jgj_app: 你创建个新项目试下
2024-08-01 14:18
套马杆的套子
然后,路径里,别用中文
2024-08-01 14:19
jgj_app (作者)
回复 套马杆的套子: 你看下我新发的截图,我看我下的没有index.uts 文件啊
2024-08-01 14:22
套马杆的套子
回复 jgj_app: 你是web端?
2024-08-01 14:29
jgj_app (作者)
回复 套马杆的套子: 他文件有问题,我把他文件后缀改了
2024-08-01 14:30
套马杆的套子
回复 jgj_app: 你是web端?确实,给index.js改成index.uts就可以了
2024-08-01 14:33