提交 34208acf 编写于 作者: fxy060608's avatar fxy060608

Update extapi.md

上级 c6aaf329
......@@ -190,7 +190,22 @@ uni-app的runtime不适合内置很多waiting样式和资源,而使用三方
}
```
- [示例(获取电量)参考](https://gitcode.net/dcloud/hello-uts/-/tree/dev/uni_modules/uni-getbatteryinfo)
**注意:**
- 所有 uni ext api 均需要提供 utssdk/interface.uts 文件
- 所有对外暴露的方法,类型均需要在 interface.uts 中定义
- 在具体平台实现中,通过引用 interface.uts 中的定义的方法,类型来约束实现
- 命名规范:
* API入参类型命名为`API名称首字母大写 + 'Options'`
> 如 uni.getBatteryInfo(options),则 options 类型命名为:`type GetBatteryInfoOptions = {}`
* 异步API success,fail 回调结果类型命名为`API名称首字母大写 + 'Success'``API名称首字母大写 + 'Fail'`
> 如 uni.getBatteryInfo() 的 success,fail 回调结果类型为:`type GetBatteryInfoSuccess = {}` 和 `type GetBatteryInfoFail = {}`
* 事件API 回调结果类型命名为`API名称首字母大写 + 'CallbackResult'`
> 如 uni.onUserCaptureScreen 的 callback 回调结果类型为:`type OnUserCaptureScreenCallbackResult = {}`
- [示例(获取电量)参考](https://gitcode.net/dcloud/uni-api/-/tree/dev/uni_modules/uni-getbatteryinfo)
## 如何使用uni ext api
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册