Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
bcfd6f27
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,发现更多精彩内容 >>
提交
bcfd6f27
编写于
6月 06, 2022
作者:
W
worldants
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Signed-off-by: worldants <lixuan40@huawei.com>
上级
7b36562c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
26 deletion
+26
-26
zh-cn/application-dev/reference/apis/js-apis-update.md
zh-cn/application-dev/reference/apis/js-apis-update.md
+26
-26
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-update.md
浏览文件 @
bcfd6f27
...
...
@@ -134,11 +134,11 @@ getNewVersionInfo(callback: AsyncCallback\<NewVersionInfo>): void
**示例:**
```
update.getNewVersionInfo(info => {
update
r
.getNewVersionInfo(info => {
console.log("getNewVersionInfo success " + info.status);
console.log(`info versionName = ` + info.
r
esult[0].versionName);
console.log(`info versionCode = ` + info.
r
esult[0].versionCode);
console.log(`info verifyInfo = ` + info.
r
esult[0].verifyInfo);
console.log(`info versionName = ` + info.
checkR
esult[0].versionName);
console.log(`info versionCode = ` + info.
checkR
esult[0].versionCode);
console.log(`info verifyInfo = ` + info.
checkR
esult[0].verifyInfo);
});
```
...
...
@@ -160,9 +160,9 @@ getNewVersionInfo(): Promise\<NewVersionInfo>
```
updater.getNewVersionInfo().then(value => {
console.log(`info versionName = ` + value.
r
esult[0].versionName);
console.log(`info versionCode = ` + value.
r
esult[0].versionCode);
console.log(`info verifyInfo = ` + value.
r
esult[0].verifyInfo);
console.log(`info versionName = ` + value.
checkR
esult[0].versionName);
console.log(`info versionCode = ` + value.
checkR
esult[0].versionCode);
console.log(`info verifyInfo = ` + value.
checkR
esult[0].verifyInfo);
}).catch(err => {
console.log("getNewVersionInfo promise error: " + err.code);
});
...
...
@@ -185,11 +185,11 @@ checkNewVersion(callback: AsyncCallback\<NewVersionInfo>): void
**示例:**
```
update.checkNewVersion(info => {
update
r
.checkNewVersion(info => {
console.log("checkNewVersion success " + info.status);
console.log(`info versionName = ` + info.
r
esult[0].versionName);
console.log(`info versionCode = ` + info.
r
esult[0].versionCode);
console.log(`info verifyInfo = ` + info.
r
esult[0].verifyInfo);
console.log(`info versionName = ` + info.
checkR
esult[0].versionName);
console.log(`info versionCode = ` + info.
checkR
esult[0].versionCode);
console.log(`info verifyInfo = ` + info.
checkR
esult[0].verifyInfo);
});
```
...
...
@@ -210,10 +210,10 @@ checkNewVersion(): Promise\<NewVersionInfo>
**示例:**
```
update.checkNewVersion().then(value => {
console.log(`info versionName = ` + value.
r
esult[0].versionName);
console.log(`info versionCode = ` + value.
r
esult[0].versionCode);
console.log(`info verifyInfo = ` + value.
r
esult[0].verifyInfo);
update
r
.checkNewVersion().then(value => {
console.log(`info versionName = ` + value.
checkR
esult[0].versionName);
console.log(`info versionCode = ` + value.
checkR
esult[0].versionCode);
console.log(`info verifyInfo = ` + value.
checkR
esult[0].verifyInfo);
}).catch(err => {
console.log("checkNewVersion promise error: " + err.code);
});
...
...
@@ -237,13 +237,13 @@ verifyUpdatePackage(upgradeFile: string, certsFile: string): void
**示例:**
```
update.on("verifyProgress", callback => {
update
r
.on("verifyProgress", callback => {
console.info('on verifyProgress ' + callback.percent);
});
update.verifyUpdatePackage("XXX", "XXX");
```
### rebootAndCleanUserData
### rebootAndCleanUserData
<sup>7+</sup>
rebootAndCleanUserData(): Promise
\<
number>
...
...
@@ -260,14 +260,14 @@ rebootAndCleanUserData(): Promise\<number>
**示例:**
```
update.rebootAndCleanUserData().then(result => {
update
r
.rebootAndCleanUserData().then(result => {
console.log("rebootAndCleanUserData " + result);
}).catch(err => {
console.info("rebootAndCleanUserData promise error: " + err.code);
});
```
### rebootAndCleanUserData
### rebootAndCleanUserData
<sup>7+</sup>
rebootAndCleanUserData(callback: AsyncCallback
\<
number>): void
...
...
@@ -284,7 +284,7 @@ rebootAndCleanUserData(callback: AsyncCallback\<number>): void
**示例:**
```
update.rebootAndCleanUserData(result => {
update
r
.rebootAndCleanUserData(result => {
console.log("rebootAndCleanUserData ", result)
});
```
...
...
@@ -306,7 +306,7 @@ applyNewVersion(): Promise\<number>
**示例:**
```
update.applyNewVersion().then(result => {
update
r
.applyNewVersion().then(result => {
console.log("appVewVersion ", result)
}).catch(err => {
console.info("applyNewVersion promise error: " + err.code);
...
...
@@ -330,7 +330,7 @@ applyNewVersion(callback: AsyncCallback\<number>): void
**示例:**
```
update.applyNewVersion(result => {
update
r
.applyNewVersion(result => {
console.log("applyNewVersion ", result)
});
```
...
...
@@ -399,7 +399,7 @@ let policy = {
autoUpgradeInterval: [ 2, 3 ],
autoUpgradeCondition: 2
}
update.setUpdatePolicy(policy, result => {
update
r
.setUpdatePolicy(policy, result => {
console.log("setUpdatePolicy ", result)
});
```
...
...
@@ -434,7 +434,7 @@ let policy = {
autoUpgradeInterval: [ 2, 3 ],
autoUpgradeCondition: 2
}
update.setUpdatePolicy(policy).then(result =>
update
r
.setUpdatePolicy(policy).then(result =>
console.log("setUpdatePolicy ", result)
).catch(err => {
console.log("setUpdatePolicy promise error: " + err.code);
...
...
@@ -458,7 +458,7 @@ getUpdatePolicy(callback: AsyncCallback\<UpdatePolicy>): void
**示例:**
```
update.getUpdatePolicy(policy => {
update
r
.getUpdatePolicy(policy => {
console.log("getUpdatePolicy success");
console.log(`policy autoDownload = ` + policy.autoDownload);
console.log(`policy autoDownloadNet = ` + policy.autoDownloadNet);
...
...
@@ -483,7 +483,7 @@ getUpdatePolicy(): Promise\<UpdatePolicy>
**示例:**
```
update.getUpdatePolicy().then(value => {
update
r
.getUpdatePolicy().then(value => {
console.log(`info autoDownload = ` + value.autoDownload);
console.log(`info autoDownloadNet = ` + value.autoDownloadNet);
console.log(`info mode = ` + value.mode);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录