Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
7bb47113
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看板
提交
7bb47113
编写于
3月 15, 2023
作者:
Z
zhangminmin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix AVSession description error in reference doc
Signed-off-by:
N
zhangminmin
<
zhangminmin9@huawei.com
>
上级
17585f0b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
6 deletion
+6
-6
zh-cn/application-dev/reference/apis/js-apis-avsession.md
zh-cn/application-dev/reference/apis/js-apis-avsession.md
+6
-6
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-avsession.md
浏览文件 @
7bb47113
...
@@ -3643,7 +3643,7 @@ controller.on('sessionEvent', (sessionEvent, args) => {
...
@@ -3643,7 +3643,7 @@ controller.on('sessionEvent', (sessionEvent, args) => {
on(type: 'queueItemsChange', callback: (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void): void
on(type: 'queueItemsChange', callback: (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void): void
媒体控制器设置会话自定义
事件
变化的监听器。
媒体控制器设置会话自定义
播放列表
变化的监听器。
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
...
@@ -3654,7 +3654,7 @@ on(type: 'queueItemsChange', callback: (items: Array<[AVQueueItem](#avqueueitem1
...
@@ -3654,7 +3654,7 @@ on(type: 'queueItemsChange', callback: (items: Array<[AVQueueItem](#avqueueitem1
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------------------- | ---- | ---------------------------------------------------------------------------- |
| -------- | ----------------------------------------------------- | ---- | ---------------------------------------------------------------------------- |
| type | string | 是 | 事件回调类型,支持事件
`'queueItemsChange'`
:当session修改播放列表时,触发该事件。 |
| type | string | 是 | 事件回调类型,支持事件
`'queueItemsChange'`
:当session修改播放列表时,触发该事件。 |
| callback | (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void | 是 | 回调函数,items为变化的
会话事件名,args为事件的参数
。 |
| callback | (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void | 是 | 回调函数,items为变化的
播放列表
。 |
**错误码:**
**错误码:**
以下错误码的详细介绍请参见
[
媒体会话管理错误码
](
../errorcodes/errorcode-avsession.md
)
。
以下错误码的详细介绍请参见
[
媒体会话管理错误码
](
../errorcodes/errorcode-avsession.md
)
。
...
@@ -3676,7 +3676,7 @@ controller.on('queueItemsChange', (items) => {
...
@@ -3676,7 +3676,7 @@ controller.on('queueItemsChange', (items) => {
on(type: 'queueTitleChange', callback: (title: string) => void): void
on(type: 'queueTitleChange', callback: (title: string) => void): void
媒体控制器设置会话自定义
事件
变化的监听器。
媒体控制器设置会话自定义
播放列表的名称
变化的监听器。
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
...
@@ -3687,7 +3687,7 @@ on(type: 'queueTitleChange', callback: (title: string) => void): void
...
@@ -3687,7 +3687,7 @@ on(type: 'queueTitleChange', callback: (title: string) => void): void
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------- | ---- | ------------------------------------------------------------------------------- |
| -------- | ----------------------- | ---- | ------------------------------------------------------------------------------- |
| type | string | 是 | 事件回调类型,支持事件
`'queueTitleChange'`
:当session修改播放列表名称时,触发该事件。 |
| type | string | 是 | 事件回调类型,支持事件
`'queueTitleChange'`
:当session修改播放列表名称时,触发该事件。 |
| callback | (title: string) => void | 是 | 回调函数,
items为变化的会话事件名,args为事件的参数
。 |
| callback | (title: string) => void | 是 | 回调函数,
title为变化的播放列表名称
。 |
**错误码:**
**错误码:**
以下错误码的详细介绍请参见
[
媒体会话管理错误码
](
../errorcodes/errorcode-avsession.md
)
。
以下错误码的详细介绍请参见
[
媒体会话管理错误码
](
../errorcodes/errorcode-avsession.md
)
。
...
@@ -3902,7 +3902,7 @@ controller.off('playbackStateChange');
...
@@ -3902,7 +3902,7 @@ controller.off('playbackStateChange');
off(type: 'sessionEvent', callback?: (sessionEvent: string, args: {[key:string]: Obejct}) => void): void
off(type: 'sessionEvent', callback?: (sessionEvent: string, args: {[key:string]: Obejct}) => void): void
控制器取消监听
播放状态变化的事件
。
控制器取消监听
会话事件的变化通知
。
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
**系统能力:**
SystemCapability.Multimedia.AVSession.Core
...
@@ -3942,7 +3942,7 @@ off(type: 'queueItemsChange', callback?: (items: Array<[AVQueueItem](#avqueueite
...
@@ -3942,7 +3942,7 @@ off(type: 'queueItemsChange', callback?: (items: Array<[AVQueueItem](#avqueueite
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------------------- | ---- | --------------------------------------------------------------------------------------------------- |
| -------- | ---------------------------------------------------- | ---- | --------------------------------------------------------------------------------------------------- |
| type | string | 是 | 取消对应的监听事件,支持事件
`'queue
Title
Change'`
。 |
| type | string | 是 | 取消对应的监听事件,支持事件
`'queue
Items
Change'`
。 |
| callback | (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void | 否 | 回调函数,参数items是变化的播放列表。
<br>
该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
| callback | (items: Array
<
[
AVQueueItem
](
#avqueueitem10
)\
>
) => void | 否 | 回调函数,参数items是变化的播放列表。
<br>
该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
**错误码:**
**错误码:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录