提交 bdad526d 编写于 作者: DCloud-yyl's avatar DCloud-yyl

更新文档说

上级 d2c5ae1d
## 1.1.0(2022-10-17)
实现ios平台获取电量
## 1.0.0(2022-09-01) ## 1.0.0(2022-09-01)
实现android/web/微信小程序平台获取电量 实现android/web/微信小程序平台获取电量
{ {
"id": "uni-getbatteryinfo", "id": "uni-getbatteryinfo",
"displayName": "uni-getbatteryinfo", "displayName": "uni-getbatteryinfo",
"version": "1.0.0", "version": "1.1.0",
"description": "使用uts开发,实现多个平台获取电量信息", "description": "使用uts开发,实现在多个平台获取电池电量功能",
"keywords": [ "keywords": [
"battery" "battery"
], ],
...@@ -83,4 +83,4 @@ ...@@ -83,4 +83,4 @@
} }
} }
} }
} }
\ No newline at end of file
...@@ -2,21 +2,17 @@ ...@@ -2,21 +2,17 @@
## 使用文档 ## 使用文档
```ts ```ts
// 引用插件
import getBatteryInfo from "@/uni_modules/uni-getbatteryinfo";
// 获取电量信息 // 获取电量信息
getBatteryInfo({ uni.getBatteryInfo({
success(res) { success(res) {
console.log(res); console.log(res);
uni.showToast({ uni.showToast({
title: "当前电量:" + res.level + '%', title: "当前电量:" + res.level + '%',
icon: 'none' icon: 'none'
}); });
} }
}) })
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册