Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
999f5670
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3216
Star
106
Fork
815
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
94
列表
看板
标记
里程碑
合并请求
70
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
94
Issue
94
列表
看板
标记
里程碑
合并请求
70
合并请求
70
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
999f5670
编写于
7月 18, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: getSystemSetting、getAppAuthorizeSetting
上级
506b489e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
9 deletion
+13
-9
docs/api/system/getappauthorizesetting.md
docs/api/system/getappauthorizesetting.md
+6
-6
docs/api/system/getsystemsetting.md
docs/api/system/getsystemsetting.md
+7
-3
未找到文件。
docs/api/system/getappauthorizesetting.md
浏览文件 @
999f5670
...
...
@@ -34,19 +34,19 @@
-
`'config error'`
:
-
bluetoothAuthorized:
-
Android平台不会返回
`config error`
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`BlueTooth(低功耗蓝牙)`
模块
则会返回该值
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`BlueTooth(低功耗蓝牙)`
模块
-
cameraAuthorized:
-
Android平台:表示没有授予
`android.permission.CAMERA`
权限
则会返回该值
-
Android平台:表示没有授予
`android.permission.CAMERA`
权限
-
iOS平台不会返回
`config error`
-
locationAuthorized:
-
Android平台:表示没有授予
`android.permission.ACCESS_COARSE_LOCATION`
权限
则会返回该值
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`Geolocation(定位)`
模块
则会返回该值
-
Android平台:表示没有授予
`android.permission.ACCESS_COARSE_LOCATION`
权限
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`Geolocation(定位)`
模块
-
microphoneAuthorized:
-
Android平台:表示没有授予
`android.permission.RECORD_AUDIO`
权限
则会返回该值
-
Android平台:表示没有授予
`android.permission.RECORD_AUDIO`
权限
-
iOS平台不会返回
`config error`
-
notificationAuthorized、notificationAlertAuthorized、notificationBadgeAuthorized、notificationSoundAuthorized:
-
Android平台不支持
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`Push(推送)`
模块
则会返回该值
-
iOS平台:表示没有在
`manifest.json -> App模块配置`
中配置
`Push(推送)`
模块
**示例**
...
...
docs/api/system/getsystemsetting.md
浏览文件 @
999f5670
...
...
@@ -12,7 +12,7 @@
|属性|类型|说明|
|:-|:-|:-|
|bluetoothEnabled|boolean|蓝牙的系统开关。当值为
`false`
时,App端:有可能是配置不正确导致,此时会返回
`bluetoothError`
属性描述错误|
|bluetoothEnabled|boolean|蓝牙的系统开关。当值为
`false`
时,App端:有可能是配置不正确导致,此时会返回
`bluetoothError`
属性描述错误
。
|
|bluetoothError|String/undefined|App端没有权限或者模块配置错误时返回,否则不返回此属性。详情见下|
|locationEnabled|boolean|地理位置的系统开关。当值为
`false`
时,App端:Android平台是准确的;iOS平台有可能是配置不正确导致,此时会返回
`locationError`
属性描述错误.|
|locationError|String/undefined|App端模块配置错误时返回,否则不返回此属性。详情见下|
...
...
@@ -20,8 +20,12 @@
|deviceOrientation|string|设备方向。
`竖屏:portrait`
,
`横屏:landscape`
|
**Tips**
-
`bluetoothError`
:Android平台值为
`"Missing permissions required by BluetoothAdapter.isEnabled: android.permission.BLUETOOTH"`
表示没有
`android.permission.BLUETOOTH`
权限;iOS平台值为
`"Missing bluetooth module in manifest.json"`
,表示没有在
`manifest.json -> App模块配置`
中配置
`BlueTooth(低功耗蓝牙)`
模块
-
`locationError`
:Android平台不会返回此值;iOS平台值为
`"Missing geolocation module in manifest.json"`
表示没有在
`manifest.json -> App模块配置`
中配置
`Geolocation(定位)`
模块
-
`bluetoothError`
:
-
Android平台值为
`"Missing permissions required by BluetoothAdapter.isEnabled: android.permission.BLUETOOTH"`
表示没有
`android.permission.BLUETOOTH`
权限
-
iOS平台值为
`"Missing bluetooth module in manifest.json"`
,表示没有在
`manifest.json -> App模块配置`
中配置
`BlueTooth(低功耗蓝牙)`
模块
-
`locationError`
:
-
Android平台不会返回此值;
-
iOS平台值为
`"Missing geolocation module in manifest.json"`
表示没有在
`manifest.json -> App模块配置`
中配置
`Geolocation(定位)`
模块
**示例**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录