Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
71e88226
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
71e88226
编写于
1月 28, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 28, 2023
浏览文件
操作
浏览文件
下载
差异文件
!13691 整改js接口
Merge pull request !13691 from dingxiaochen/master
上级
459a99b8
ef5fcaad
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
121 addition
and
3 deletion
+121
-3
zh-cn/application-dev/reference/apis/js-apis-radio.md
zh-cn/application-dev/reference/apis/js-apis-radio.md
+61
-2
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.6/changelogs-telephony.md
...s/changelogs/OpenHarmony_3.2.10.6/changelogs-telephony.md
+59
-0
zh-cn/release-notes/changelogs/OpenHarmony_3.2.9.1/changelogs-telephony.md
...es/changelogs/OpenHarmony_3.2.9.1/changelogs-telephony.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-radio.md
浏览文件 @
71e88226
...
@@ -384,12 +384,16 @@ promise.then(data => {
...
@@ -384,12 +384,16 @@ promise.then(data => {
});
});
```
```
## radio.isNrSupported<sup>
7+
</sup>
## radio.isNrSupported<sup>
(deprecated)
</sup>
isNrSupported
\(\)
: boolean
isNrSupported
\(\)
: boolean
判断当前设备是否支持5G
\(
NR
\)
。
判断当前设备是否支持5G
\(
NR
\)
。
> **说明:**
>
> 从 API version 7开始支持,从API version 9开始废弃。建议使用[isNRSupported](#radioisnrsupported9)替代。
**系统能力**
:SystemCapability.Telephony.CoreService
**系统能力**
:SystemCapability.Telephony.CoreService
**返回值:**
**返回值:**
...
@@ -405,12 +409,16 @@ let result = radio.isNrSupported();
...
@@ -405,12 +409,16 @@ let result = radio.isNrSupported();
console
.
log
(
"
Result:
"
+
result
);
console
.
log
(
"
Result:
"
+
result
);
```
```
## radio.isNrSupported<sup>
8+
</sup>
## radio.isNrSupported<sup>
(deprecated)
</sup>
isNrSupported
\(
slotId: number
\)
: boolean
isNrSupported
\(
slotId: number
\)
: boolean
判断当前设备是否支持5G
\(
NR
\)
。
判断当前设备是否支持5G
\(
NR
\)
。
> **说明:**
>
> 从 API version 8开始支持,从API version 9开始废弃。建议使用[isNRSupported](#radioisnrsupported9-1)替代。
**系统能力**
:SystemCapability.Telephony.CoreService
**系统能力**
:SystemCapability.Telephony.CoreService
**参数:**
**参数:**
...
@@ -434,6 +442,57 @@ console.log("Result: "+ result);
...
@@ -434,6 +442,57 @@ console.log("Result: "+ result);
```
```
## radio.isNRSupported<sup>9+</sup>
isNRSupported
\(\)
: boolean
判断当前设备是否支持5G
\(
NR
\)
。
**系统能力**
:SystemCapability.Telephony.CoreService
**返回值:**
| 类型 | 说明 |
| ------- | -------------------------------- |
| boolean | - true:支持
<br/>
- false:不支持 |
**示例:**
```
js
let
result
=
radio
.
isNRSupported
();
console
.
log
(
"
Result:
"
+
result
);
```
## radio.isNRSupported<sup>9+</sup>
isNRSupported
\(
slotId: number
\)
: boolean
判断当前设备是否支持5G
\(
NR
\)
。
**系统能力**
:SystemCapability.Telephony.CoreService
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是 | 卡槽ID。
<br/>
- 0:卡槽1
<br/>
- 1:卡槽2 |
**返回值:**
| 类型 | 说明 |
| ------------------ | ------------------------------------------------------------ |
| boolean | - true:支持
<br/>
- false:不支持 |
**示例:**
```
js
let
slotId
=
0
;
let
result
=
radio
.
isNRSupported
(
slotId
);
console
.
log
(
"
Result:
"
+
result
);
```
## radio.isRadioOn<sup>7+</sup>
## radio.isRadioOn<sup>7+</sup>
isRadioOn
\(
callback: AsyncCallback<boolean
\>\)
: void
isRadioOn
\(
callback: AsyncCallback<boolean
\>\)
: void
...
...
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.6/changelogs-telephony.md
0 → 100644
浏览文件 @
71e88226
# 电话子系统ChangeLog
## cl.telephony.1 radio模块接口变更
### 电话子系统radio模块 `isNrSupported` 接口存在变更:
NR是专有名词,需要全部大写。
开发者需要根据以下说明对应用进行适配。
**变更影响**
基于此前版本开发的应用,需适配变更的js接口,变更前的接口已经不能正常使用了,否则会影响原有功能。
**关键的接口/组件变更**
-
涉及接口
isNrSupported(): boolean;
isNrSupported(slotId: number): boolean;
-
变更前:
```
js
function
isNrSupported
():
boolean
;
function
isNrSupported
(
slotId
:
number
):
boolean
;
```
-
变更后:
```
js
function
isNRSupported
():
boolean
;
function
isNRSupported
(
slotId
:
number
):
boolean
;
```
**适配指导**
使用变更后的接口,示例代码如下:
```
js
let
result
=
radio
.
isNrSupported
();
console
.
log
(
"
Result:
"
+
result
);
```
```
js
let
slotId
=
0
;
let
result
=
radio
.
isNRSupported
(
slotId
);
console
.
log
(
"
Result:
"
+
result
);
```
zh-cn/release-notes/changelogs/OpenHarmony_3.2.9.1/changelogs-telephony.md
浏览文件 @
71e88226
...
@@ -62,4 +62,4 @@ promise.then(data => {
...
@@ -62,4 +62,4 @@ promise.then(data => {
}).
catch
(
err
=>
{
}).
catch
(
err
=>
{
console
.
error
(
`isImsSmsSupported failed, promise: err->
${
JSON
.
stringify
(
err
)}
`
);
console
.
error
(
`isImsSmsSupported failed, promise: err->
${
JSON
.
stringify
(
err
)}
`
);
});
});
```
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录