Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d0a6b1c2
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看板
未验证
提交
d0a6b1c2
编写于
2月 20, 2023
作者:
O
openharmony_ci
提交者:
Gitee
2月 20, 2023
浏览文件
操作
浏览文件
下载
差异文件
!14808 js-apis-application-formHost.md示例代码修改
Merge pull request !14808 from chenyuyan/formerr
上级
027689a6
ae191aba
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
1 deletion
+21
-1
zh-cn/application-dev/reference/apis/js-apis-application-formHost.md
...cation-dev/reference/apis/js-apis-application-formHost.md
+21
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-application-formHost.md
浏览文件 @
d0a6b1c2
...
...
@@ -40,6 +40,8 @@ let formId = '12400633174999288';
formHost
.
deleteForm
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost deleteForm, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost deleteForm success
'
);
}
});
```
...
...
@@ -66,7 +68,7 @@ deleteForm(formId: string): Promise<void>
| -------- | -------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**
参数
:**
**
示例
:**
```
ts
import
formHost
from
'
@ohos.application.formHost
'
;
...
...
@@ -206,6 +208,8 @@ let formId = '12400633174999288';
formHost
.
requestForm
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost requestForm, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost requestForm success
'
);
}
});
```
...
...
@@ -271,6 +275,8 @@ let formId = '12400633174999288';
formHost
.
castTempForm
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost castTempForm, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost castTempForm success
'
);
}
});
```
...
...
@@ -336,6 +342,8 @@ let formId = ['12400633174999288'];
formHost
.
notifyVisibleForms
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost notifyVisibleForms, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost notifyVisibleForms success
'
);
}
});
```
...
...
@@ -401,6 +409,8 @@ let formId = ['12400633174999288'];
formHost
.
notifyInvisibleForms
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost notifyInvisibleForms, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost notifyInvisibleForms success
'
);
}
});
```
...
...
@@ -466,6 +476,8 @@ let formId = ['12400633174999288'];
formHost
.
enableFormsUpdate
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost enableFormsUpdate, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost enableFormsUpdate success
'
);
}
});
```
...
...
@@ -531,6 +543,8 @@ let formId = ['12400633174999288'];
formHost
.
disableFormsUpdate
(
formId
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost disableFormsUpdate, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost disableFormsUpdate success
'
);
}
});
```
...
...
@@ -593,6 +607,8 @@ let formId = '12400633174999288';
formHost
.
isSystemReady
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost isSystemReady, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost isSystemReady success
'
);
}
});
```
...
...
@@ -1011,6 +1027,8 @@ let formIds = new Array('12400633174999288', '12400633174999289');
formHost
.
notifyFormsVisible
(
formIds
,
true
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost notifyFormsVisible, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost notifyFormsVisible, data:
'
+
JSON
.
stringify
(
data
));
}
});
```
...
...
@@ -1078,6 +1096,8 @@ let formIds = new Array('12400633174999288', '12400633174999289');
formHost
.
notifyFormsEnableUpdate
(
formIds
,
true
,
(
error
,
data
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
'
formHost notifyFormsEnableUpdate, error:
'
+
JSON
.
stringify
(
error
));
}
else
{
console
.
log
(
'
formHost notifyFormsEnableUpdate, data:
'
+
JSON
.
stringify
(
data
));
}
});
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录