# getBatteryInfo ^6.8
获取手机电量
# 请求参数
N/A
# 接口调用示例
this.$bridge
.getBatteryInfo()
.then(res => {
this.$alert(res)
})
.catch(err => {
// 错误处理
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 返回参数
- 成功时返回
Prop | Type | Value |
---|---|---|
level | Number | [1-100] |
isCharging | Boolean | [ true|false ] |
# 返回示例
{
"level": 48,
"isCharging": false
}
1
2
3
4
5
6
2
3
4
5
6