diff --git a/docs/api/_sidebar.md b/docs/api/_sidebar.md index 8da828cbdcdd76e7f026dcd35f536f62a7f50e37..acd8ce8eb774d6919362fc41562d6b8024871c34 100644 --- a/docs/api/_sidebar.md +++ b/docs/api/_sidebar.md @@ -28,7 +28,7 @@ * [uni.preloadPage](/api/preload-page) * [窗口动画](/api/router?id=animation) * [页面](api/window/window.md) - * [页面通讯](api/window/communication.md) + * [页面通讯](api/window/communication.md) * [subNVue原生子窗体](api/window/subNVues.md) * [数据缓存](/api/storage/storage) * [uni.setStorage](/api/storage/storage?id=setstorage) @@ -150,6 +150,7 @@ * [获取发票抬头](api/other/invoice-title.md) * [小程序跳转](api/other/open-miniprogram.md) * [账号信息](api/other/getAccountInfoSync.md) + * [环境信息](api/other/getEnvInfoSync.md) * [运动(计步器)](api/other/sport.md) * [统计](api/other/report.md) * [卡券](api/other/card.md) diff --git a/docs/api/other/getEnvInfoSync.md b/docs/api/other/getEnvInfoSync.md new file mode 100644 index 0000000000000000000000000000000000000000..016df938c39cceb44e74edd2a0383a766039f549 --- /dev/null +++ b/docs/api/other/getEnvInfoSync.md @@ -0,0 +1,34 @@ +#### uni.getEnvInfoSync() + +获取小程序环境信息。 + +**平台差异说明** + +|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序|飞书小程序|QQ小程序|快手小程序|京东小程序| +|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| +|x|x|x|x|x|√|x|x|x|x| + +**返回值** + +**Object** + +| 属性 | 类型 | 说明 | +| --- | --- | --- | +| microapp | MicroApp| 小程序信息 | +| common | Common | 通用参数 | + + +**MicroApp 类型说明** + +| 属性 | 类型 | 说明 | +| --- | --- | --- | +| mpVersion | string | 小程序 appId | +| envType| string | 小程序环境 `development`测试版、`preview`预览版、`production`线上版 | +| appId| string | 小程序 appId | + + +**Common 类型说明** + +| 属性 | 类型 | 说明 | +| --- | --- | --- | +| USER_DATA_PATH | string | 用户数据存储的路径(默认值 ttfile://user)|