Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
07687b5a
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看板
未验证
提交
07687b5a
编写于
12月 08, 2022
作者:
葛
葛亚芳
提交者:
Gitee
12月 08, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/apis/js-apis-window.md.
Signed-off-by:
N
葛亚芳
<
geyafang@huawei.com
>
上级
fa55bbb6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
15 deletion
+13
-15
zh-cn/application-dev/reference/apis/js-apis-window.md
zh-cn/application-dev/reference/apis/js-apis-window.md
+13
-15
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-window.md
浏览文件 @
07687b5a
...
...
@@ -46,17 +46,15 @@ import window from '@ohos.window';
## Configuration<sup>9+</sup>
创建子窗口时的参数。
当Context为
[
ServiceExtensionContext
](
js-apis-inner-application-serviceExtensionContext.md
)
时,创建系统窗口时,使用callback异步回调。
创建子窗口或系统窗口时的参数。
**系统能力:**
SystemCapability.WindowManager.WindowManager.Core
| 名称 | 类型 | 必填 | 说明 |
| ---------- | -------------------------- | -- | ----------------------------------- |
| name | string | 是 |
子
窗口名字。 |
| windowType |
[
WindowType
](
#windowtype7
)
| 是 |
子
窗口类型。 |
| ctx | BaseContext | 否 | 当前应用上下文信息。
<br>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br>
Stage模型的Context定义见
[
Context
](
js-apis-inner-application-serviceExtensionContext.md
)
。不设置,则默认为空。
|
| name | string | 是 | 窗口名字。 |
| windowType |
[
WindowType
](
#windowtype7
)
| 是 | 窗口类型。 |
| ctx | BaseContext | 否 | 当前应用上下文信息。
<br>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br>
Stage模型的Context定义见
[
ServiceExtensionContext
](
js-apis-inner-application-serviceExtensionContext.md
)
。不设置,则默认为空。
<br>
当Context为
[
ServiceExtensionContext
](
js-apis-inner-application-serviceExtensionContext.md
)
时,创建系统窗口。
|
| displayId | number | 否 | 当前物理屏幕id。不设置,则默认为-1。 |
| parentId | number | 否 | 父窗口id。不设置,则默认为-1。 |
...
...
@@ -302,7 +300,7 @@ import window from '@ohos.window';
createWindow(config: Configuration, callback: AsyncCallback
<
Window
>
): void
创建子窗口,使用callback异步回调。
创建子窗口
或者系统窗口
,使用callback异步回调。
**系统能力:**
SystemCapability.WindowManager.WindowManager.Core
...
...
@@ -310,8 +308,8 @@ createWindow(config: Configuration, callback: AsyncCallback<Window>): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------------------- | -- | --------------------------------- |
| config |
[
Configuration
](
#configuration9
)
| 是 |
当前应用上下文信息。
|
| callback | AsyncCallback
<
[Window](#window)
>
| 是 | 回调函数。返回当前创建的
子
窗口对象。 |
| config |
[
Configuration
](
#configuration9
)
| 是 |
创建窗口时的参数。
|
| callback | AsyncCallback
<
[Window](#window)
>
| 是 | 回调函数。返回当前创建的窗口对象。 |
**错误码:**
...
...
@@ -346,7 +344,7 @@ try {
createWindow(config: Configuration): Promise
<
Window
>
创建子窗口,使用Promise异步回调。
创建子窗口
或者系统窗口
,使用Promise异步回调。
**系统能力:**
SystemCapability.WindowManager.WindowManager.Core
...
...
@@ -354,13 +352,13 @@ createWindow(config: Configuration): Promise<Window>
| 参数名 | 类型 | 必填 | 说明 |
| ------ | -------------------------------- | -- | ------------------ |
| config |
[
Configuration
](
#configuration9
)
| 是 |
当前应用上下文信息
。 |
| config |
[
Configuration
](
#configuration9
)
| 是 |
创建窗口时的参数
。 |
**返回值:**
| 类型 | 说明 |
| -------------------------------- | ------------------------------------ |
| Promise
<
[Window](#window)
>
| Promise对象。返回当前创建的
子
窗口对象。 |
| Promise
<
[Window](#window)
>
| Promise对象。返回当前创建的窗口对象。 |
**错误码:**
...
...
@@ -393,7 +391,7 @@ try {
findWindow(name: string): Window
查找
id
所对应的窗口。
查找
name
所对应的窗口。
**系统能力:**
SystemCapability.WindowManager.WindowManager.Core
...
...
@@ -913,7 +911,7 @@ create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback&l
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| ctx | BaseContext | 是 | 当前应用上下文信息。
<br>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br>
Stage模型的Context定义见
[
Context
](
js-apis-inner-application-serviceExtensionContext.md
)
。 |
| ctx | BaseContext | 是 | 当前应用上下文信息。
<br>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br>
Stage模型的Context定义见
[
ServiceExtension
Context
](
js-apis-inner-application-serviceExtensionContext.md
)
。 |
| id | string | 是 | 窗口id。 |
| type |
[
WindowType
](
#windowtype7
)
| 是 | 窗口类型。 |
| callback | AsyncCallback
<
[Window](#window)
>
| 是 | 回调函数。返回当前创建的子窗口对象。 |
...
...
@@ -951,7 +949,7 @@ create(ctx: BaseContext, id: string, type: WindowType): Promise<Window>
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------------------------- | ---- | ------------------------------------------------------------ |
| ctx | BaseContext | 是 | 当前应用上下文信息。
<br/>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br/>
Stage模型的Context定义见
[
Context
](
js-apis-inner-application-serviceExtensionContext.md
)
。 |
| ctx | BaseContext | 是 | 当前应用上下文信息。
<br/>
FA模型的Context定义见
[
Context
](
js-apis-inner-app-context.md
)
。
<br/>
Stage模型的Context定义见
[
ServiceExtension
Context
](
js-apis-inner-application-serviceExtensionContext.md
)
。 |
| id | string | 是 | 窗口id。 |
| type |
[
WindowType
](
#windowtype7
)
| 是 | 窗口类型。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录