Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0018bc9f
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看板
未验证
提交
0018bc9f
编写于
1月 31, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 31, 2023
浏览文件
操作
浏览文件
下载
差异文件
!14087 添加接口变更changelog
Merge pull request !14087 from dingxiaochen/master
上级
9915655b
c9e0eb8d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
130 addition
and
0 deletion
+130
-0
zh-cn/release-notes/changelogs/OpenHarmony_4.0.2.5/changelogs-telephony.md
...es/changelogs/OpenHarmony_4.0.2.5/changelogs-telephony.md
+130
-0
未找到文件。
zh-cn/release-notes/changelogs/OpenHarmony_4.0.2.5/changelogs-telephony.md
0 → 100644
浏览文件 @
0018bc9f
# 电话子系统ChangeLog
## cl.telephony.radio.1 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
);
```
## cl.telephony.call.2 dial接口变更
从API9开始,废弃此接口,改为使用dialCall接口。
开发者需要根据以下说明对应用进行适配。
**变更影响**
该接口删除无法再使用,请使用新增的接口dialCall替换,否则会影响原有功能。
**关键的接口/组件变更**
-
涉及接口
dial(phoneNumber: string, callback: AsyncCallback
<boolean>
): void;
dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback
<boolean>
): void;
dial(phoneNumber: string, options?: DialOptions): Promise
<boolean>
;
-
变更前:
```
js
function
dial
(
phoneNumber
:
string
,
callback
:
AsyncCallback
<
boolean
>
):
void
;
function
dial
(
phoneNumber
:
string
,
options
:
DialOptions
,
callback
:
AsyncCallback
<
boolean
>
):
void
;
function
dial
(
phoneNumber
:
string
,
options
?:
DialOptions
):
Promise
<
boolean
>
;
```
-
变更后:
```
js
function
dialCall
(
phoneNumber
:
string
,
callback
:
AsyncCallback
<
void
>
):
void
;
function
dialCall
(
phoneNumber
:
string
,
options
:
DialCallOptions
,
callback
:
AsyncCallback
<
void
>
):
void
;
function
dialCall
(
phoneNumber
:
string
,
options
?:
DialCallOptions
):
Promise
<
void
>
;
```
**适配指导**
该接口删除无法再使用,请使用新增的接口dialCall替换。
使用变更后的接口,示例代码如下:
```
js
call
.
dialCall
(
"
138xxxxxxxx
"
,
(
err
,
data
)
=>
{
console
.
log
(
`callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
});
```
```
js
call
.
dialCall
(
"
138xxxxxxxx
"
,
{
accountId
:
0
,
videoState
:
0
,
dialScene
:
0
,
dialType
:
0
,
},
(
err
,
data
)
=>
{
console
.
log
(
`callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
});
```
```
js
try
{
call
.
dialCall
(
'
138xxxxxxxx
'
);
console
.
log
(
`dialCall success, promise: data->
${
JSON
.
stringify
(
data
)}
`
);
}
catch
(
error
)
{
console
.
log
(
`dialCall fail, promise: err->
${
JSON
.
stringify
(
error
)}
`
);
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录