未验证 提交 0182aa62 编写于 作者: 1 189******51 提交者: Gitee

IssueNo: #I7UZUJ:[新需求]: Rectify the arkts syntax

Description: Rectify the arkts syntax
Sig: SIG_ApplicaitonFramework
Feature or Bugfix: Feature
Binary Source: No
Signed-off-by: N189******51 <lipeicheng5@huawei.com>
上级 69e56aeb
...@@ -46,9 +46,10 @@ getBundleInstaller(callback: AsyncCallback\<BundleInstaller>): void; ...@@ -46,9 +46,10 @@ getBundleInstaller(callback: AsyncCallback\<BundleInstaller>): void;
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
try { try {
installer.getBundleInstaller((err, data) => { installer.getBundleInstaller((err: BusinessError, data: installer.BundleInstaller) => {
if (err) { if (err) {
console.error('getBundleInstaller failed:' + err.message); console.error('getBundleInstaller failed:' + err.message);
} else { } else {
...@@ -79,11 +80,12 @@ getBundleInstaller(): Promise\<BundleInstaller>; ...@@ -79,11 +80,12 @@ getBundleInstaller(): Promise\<BundleInstaller>;
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
try { try {
installer.getBundleInstaller().then((data) => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
console.info('getBundleInstaller successfully.'); console.info('getBundleInstaller successfully.');
}).catch((error) => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -176,23 +178,25 @@ install(hapFilePaths: Array&lt;string&gt;, installParam: InstallParam, callback: ...@@ -176,23 +178,25 @@ install(hapFilePaths: Array&lt;string&gt;, installParam: InstallParam, callback:
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.install(hapFilePaths, installParam, err => { data.install(hapFilePaths, installParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('install failed:' + err.message); console.error('install failed:' + err.message);
} else { } else {
console.info('install successfully.'); console.info('install successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -254,11 +258,13 @@ install(hapFilePaths: Array&lt;string&gt;, callback: AsyncCallback&lt;void&gt;): ...@@ -254,11 +258,13 @@ install(hapFilePaths: Array&lt;string&gt;, callback: AsyncCallback&lt;void&gt;):
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.install(hapFilePaths, err => { data.install(hapFilePaths, (err: BusinessError) => {
if (err) { if (err) {
console.error('install failed:' + err.message); console.error('install failed:' + err.message);
} else { } else {
...@@ -336,22 +342,24 @@ install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<v ...@@ -336,22 +342,24 @@ install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<v
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.install(hapFilePaths, installParam) data.install(hapFilePaths, installParam)
.then((data) => { .then((data: void) => {
console.info('install successfully: ' + JSON.stringify(data)); console.info('install successfully: ' + JSON.stringify(data));
}).catch((error) => { }).catch((error: BusinessError) => {
console.error('install failed:' + error.message); console.error('install failed:' + error.message);
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -395,23 +403,25 @@ uninstall(bundleName: string, installParam: InstallParam, callback: AsyncCallbac ...@@ -395,23 +403,25 @@ uninstall(bundleName: string, installParam: InstallParam, callback: AsyncCallbac
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1 installFlag: 1
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.uninstall(bundleName, installParam, err => { data.uninstall(bundleName, installParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('uninstall failed:' + err.message); console.error('uninstall failed:' + err.message);
} else { } else {
console.info('uninstall successfully.'); console.info('uninstall successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -453,18 +463,20 @@ uninstall(bundleName: string, callback: AsyncCallback&lt;void&gt;): void; ...@@ -453,18 +463,20 @@ uninstall(bundleName: string, callback: AsyncCallback&lt;void&gt;): void;
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.uninstall(bundleName, err => { data.uninstall(bundleName, (err: BusinessError) => {
if (err) { if (err) {
console.error('uninstall failed:' + err.message); console.error('uninstall failed:' + err.message);
} else { } else {
console.info('uninstall successfully.'); console.info('uninstall successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -511,22 +523,24 @@ uninstall(bundleName: string, installParam?: InstallParam) : Promise\<void\>; ...@@ -511,22 +523,24 @@ uninstall(bundleName: string, installParam?: InstallParam) : Promise\<void\>;
**示例:** **示例:**
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.uninstall(bundleName, installParam) data.uninstall(bundleName, installParam)
.then((data) => { .then((data: void) => {
console.info('uninstall successfully: ' + JSON.stringify(data)); console.info('uninstall successfully: ' + JSON.stringify(data));
}).catch((error) => { }).catch((error: BusinessError) => {
console.error('uninstall failed:' + error.message); console.error('uninstall failed:' + error.message);
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -567,23 +581,25 @@ recover(bundleName: string, installParam: InstallParam, callback: AsyncCallback& ...@@ -567,23 +581,25 @@ recover(bundleName: string, installParam: InstallParam, callback: AsyncCallback&
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1 installFlag: 1
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.recover(bundleName, installParam, err => { data.recover(bundleName, installParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('recover failed:' + err.message); console.error('recover failed:' + err.message);
} else { } else {
console.info('recover successfully.'); console.info('recover successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -623,18 +639,20 @@ recover(bundleName: string, callback: AsyncCallback&lt;void&gt;): void; ...@@ -623,18 +639,20 @@ recover(bundleName: string, callback: AsyncCallback&lt;void&gt;): void;
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.recover(bundleName, err => { data.recover(bundleName, (err: BusinessError) => {
if (err) { if (err) {
console.error('recover failed:' + err.message); console.error('recover failed:' + err.message);
} else { } else {
console.info('recover successfully.'); console.info('recover successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -679,22 +697,24 @@ recover(bundleName: string, installParam?: InstallParam) : Promise\<void\>; ...@@ -679,22 +697,24 @@ recover(bundleName: string, installParam?: InstallParam) : Promise\<void\>;
**示例:** **示例:**
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let bundleName = 'com.ohos.demo'; let bundleName = 'com.ohos.demo';
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.recover(bundleName, installParam) data.recover(bundleName, installParam)
.then((data) => { .then((data: void) => {
console.info('recover successfully: ' + JSON.stringify(data)); console.info('recover successfully: ' + JSON.stringify(data));
}).catch((error) => { }).catch((error: BusinessError) => {
console.error('recover failed:' + error.message); console.error('recover failed:' + error.message);
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -735,20 +755,22 @@ uninstall(uninstallParam: UninstallParam, callback : AsyncCallback\<void>) : voi ...@@ -735,20 +755,22 @@ uninstall(uninstallParam: UninstallParam, callback : AsyncCallback\<void>) : voi
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
let uninstallParam = { import { BusinessError } from '@ohos.base';
bundleName : "com.ohos.demo",
let uninstallParam: installer.UninstallParam = {
bundleName: "com.ohos.demo",
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.uninstall(uninstallParam, err => { data.uninstall(uninstallParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('uninstall failed:' + err.message); console.error('uninstall failed:' + err.message);
} else { } else {
console.info('uninstall successfully.'); console.info('uninstall successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -794,20 +816,22 @@ uninstall(uninstallParam: UninstallParam) : Promise\<void>; ...@@ -794,20 +816,22 @@ uninstall(uninstallParam: UninstallParam) : Promise\<void>;
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
let uninstallParam = { import { BusinessError } from '@ohos.base';
bundleName : "com.ohos.demo",
let uninstallParam: installer.UninstallParam = {
bundleName: "com.ohos.demo",
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.uninstall(uninstallParam, err => { data.uninstall(uninstallParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('uninstall failed:' + err.message); console.error('uninstall failed:' + err.message);
} else { } else {
console.info('uninstall successfully.'); console.info('uninstall successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -864,23 +888,25 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, installParam: InstallParam, c ...@@ -864,23 +888,25 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, installParam: InstallParam, c
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.updateBundleForSelf(hapFilePaths, installParam, err => { data.updateBundleForSelf(hapFilePaths, installParam, (err: BusinessError) => {
if (err) { if (err) {
console.error('updateBundleForSelf failed:' + err.message); console.error('updateBundleForSelf failed:' + err.message);
} else { } else {
console.info('updateBundleForSelf successfully.'); console.info('updateBundleForSelf successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -935,18 +961,20 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, callback: AsyncCallback\<void ...@@ -935,18 +961,20 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, callback: AsyncCallback\<void
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.updateBundleForSelf(hapFilePaths, err => { data.updateBundleForSelf(hapFilePaths, (err: BusinessError) => {
if (err) { if (err) {
console.error('updateBundleForSelf failed:' + err.message); console.error('updateBundleForSelf failed:' + err.message);
} else { } else {
console.info('updateBundleForSelf successfully.'); console.info('updateBundleForSelf successfully.');
} }
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
...@@ -1002,22 +1030,24 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, installParam?: InstallParam): ...@@ -1002,22 +1030,24 @@ updateBundleForSelf(hapFilePaths: Array\<string\>, installParam?: InstallParam):
```ts ```ts
import installer from '@ohos.bundle.installer'; import installer from '@ohos.bundle.installer';
import { BusinessError } from '@ohos.base';
let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/']; let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
let installParam = { let installParam: installer.InstallParam = {
userId: 100, userId: 100,
isKeepData: false, isKeepData: false,
installFlag: 1, installFlag: 1,
}; };
try { try {
installer.getBundleInstaller().then(data => { installer.getBundleInstaller().then((data: installer.BundleInstaller) => {
data.updateBundleForSelf(hapFilePaths, installParam) data.updateBundleForSelf(hapFilePaths, installParam)
.then((data) => { .then((data: void) => {
console.info('updateBundleForSelf successfully: ' + JSON.stringify(data)); console.info('updateBundleForSelf successfully: ' + JSON.stringify(data));
}).catch((error) => { }).catch((error: BusinessError) => {
console.error('updateBundleForSelf failed:' + error.message); console.error('updateBundleForSelf failed:' + error.message);
}); });
}).catch(error => { }).catch((error: BusinessError) => {
console.error('getBundleInstaller failed. Cause: ' + error.message); console.error('getBundleInstaller failed. Cause: ' + error.message);
}); });
} catch (error) { } catch (error) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册