提交 a17b1118 编写于 作者: Y ylq121

xiugai

Signed-off-by: Nylq121 <yangqing89@huawei.com>
上级 cbad6214
...@@ -51,17 +51,17 @@ static enableCloud(accountId: string, switches: {[bundleName: string]: boolean}, ...@@ -51,17 +51,17 @@ static enableCloud(accountId: string, switches: {[bundleName: string]: boolean},
```js ```js
let account = "test_id"; let account = "test_id";
let switches = {"test_bundleName1":true, "test_bundleName2":false}; let switches = { "test_bundleName1": true, "test_bundleName2": false };
try { try {
await ddm.Config.enableCloud(account, function (err, data) { await ddm.Config.enableCloud(account, function (err, data) {
if (err == undefined) { if (err == undefined) {
console.info('Succeeding in enabling cloud'); console.info('Succeeding in enabling cloud');
} else { } else {
console.error('Failed to enable' + `, error code is ${err.code}, message is ${err.message}`); console.error('Failed to enable' + `, error code is ${err.code}, message is $ { err.message }`);
} }
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is $ { e.message }`);
} }
``` ```
...@@ -90,15 +90,15 @@ static enableCloud(accountId: string, switches: {[bundleName: string]: boolean}) ...@@ -90,15 +90,15 @@ static enableCloud(accountId: string, switches: {[bundleName: string]: boolean})
```js ```js
let account = "test_id"; let account = "test_id";
let switches = {"test_bundleName1":true, "test_bundleName2":false}; let switches = { "test_bundleName1": true, "test_bundleName2": false };
try { try {
await ddm.Config.enableCloud(account).then((data) => { await ddm.Config.enableCloud(account).then((data) => {
console.info('Succeeding in enabling cloud'); console.info('Succeeding in enabling cloud');
}).catch((error) => { }).catch((error) => {
console.error('Failed to enable' + `, error code is ${error.code}, message is ${error.message}`); console.error('Failed to enable' + `, error code is ${error.code}, message is $ { error.message }`);
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is $ { e.message }`);
} }
``` ```
...@@ -122,15 +122,15 @@ static disableCloud(accountId: string, callback: AsyncCallback&lt;void&gt;):void ...@@ -122,15 +122,15 @@ static disableCloud(accountId: string, callback: AsyncCallback&lt;void&gt;):void
```js ```js
let account = "test_id"; let account = "test_id";
try { try {
await ddm.Config.disableCloud(account, function (err, data) { await ddm.Config.disableCloud(account, function (err, data) {
if (err == undefined) { if (err == undefined) {
console.info('Succeeding in disabling cloud'); console.info('Succeeding in disabling cloud');
} else { } else {
console.error('Failed to disableCloud' + `, error code is ${err.code}, message is ${err.message}`); console.error('Failed to disableCloud' + `, error code is ${err.code}, message is ${err.message}`);
} }
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -158,15 +158,15 @@ static disableCloud(accountId: string): Promise&lt;void&gt; ...@@ -158,15 +158,15 @@ static disableCloud(accountId: string): Promise&lt;void&gt;
```js ```js
let account = "test_id"; let account = "test_id";
let switches = {"test_bundleName1":true, "test_bundleName2":false}; let switches = { "test_bundleName1": true, "test_bundleName2": false };
try { try {
await ddm.Config.disableCloud(account).then((data) => { await ddm.Config.disableCloud(account).then((data) => {
console.info('Succeeding in disabling cloud'); console.info('Succeeding in disabling cloud');
}).catch((error) => { }).catch((error) => {
console.error('Failed to disableCloud' + `, error code is ${error.code}, message is ${error.message}`); console.error('Failed to disableCloud' + `, error code is ${error.code}, message is ${error.message}`);
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -193,15 +193,15 @@ static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean, ...@@ -193,15 +193,15 @@ static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean,
let account = "test_id"; let account = "test_id";
let bundleName = "test_bundleName"; let bundleName = "test_bundleName";
try { try {
await ddm.Config.changeAppCloudSwitch(account, bundleName, true, function (err, data) { await ddm.Config.changeAppCloudSwitch(account, bundleName, true, function (err, data) {
if (err == undefined) { if (err == undefined) {
console.info('Succeeding in changing App cloud switch'); console.info('Succeeding in changing App cloud switch');
} else { } else {
console.error('Failed to change App cloud switch' + `, error code is ${err.code}, message is ${err.message}`); console.error('Failed to change App cloud switch' + `, error code is ${err.code}, message is ${err.message}`);
} }
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -233,13 +233,13 @@ static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean): ...@@ -233,13 +233,13 @@ static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean):
let account = "test_id"; let account = "test_id";
let bundleName = "test_bundleName"; let bundleName = "test_bundleName";
try { try {
await ddm.Config.changeAppCloudSwitch(account, bundleName, true).then((data) => { await ddm.Config.changeAppCloudSwitch(account, bundleName, true).then((data) => {
console.info('Succeeding in changing App cloud switch'); console.info('Succeeding in changing App cloud switch');
}).catch((error) => { }).catch((error) => {
console.error('Failed to change App cloud switch' + `, error code is ${error.code}, message is ${error.message}`); console.error('Failed to change App cloud switch' + `, error code is ${error.code}, message is ${error.message}`);
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -262,18 +262,19 @@ static clean(accountId: string, appActions: {[bundleName: string]: Action}, call ...@@ -262,18 +262,19 @@ static clean(accountId: string, appActions: {[bundleName: string]: Action}, call
**示例:** **示例:**
```js ```js
let con = ddm.Action;
let account = "test_id"; let account = "test_id";
let appActions = {"test_bundleName1": con.CLEAR_CLOUD_INFO, "test_bundleName2": con.CLEAR_CLOUD_DATA_AND_INFO} let appActions = { "test_bundleName1": con.CLEAR_CLOUD_INFO, "test_bundleName2": con.CLEAR_CLOUD_DATA_AND_INFO }
try { try {
await ddm.Config.clean(account, appActions, function (err, data) { await ddm.Config.clean(account, appActions, function (err, data) {
if (err == undefined) { if (err == undefined) {
console.info('Succeeding in cleaning cloud data'); console.info('Succeeding in cleaning cloud data');
} else { } else {
console.error('Failed to clean' + `, error code is ${err.code}, message is ${err.message}`); console.error('Failed to clean' + `, error code is ${err.code}, message is ${err.message}`);
} }
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -301,16 +302,17 @@ static clean(accountId: string, appActions: {[bundleName: string]: Action}): Pro ...@@ -301,16 +302,17 @@ static clean(accountId: string, appActions: {[bundleName: string]: Action}): Pro
**示例:** **示例:**
```js ```js
let con = ddm.Action;
let account = "test_id"; let account = "test_id";
let appActions = {"test_bundleName1": con.CLEAR_CLOUD_INFO, "test_bundleName2": con.CLEAR_CLOUD_DATA_AND_INFO} let appActions = { "test_bundleName1": con.CLEAR_CLOUD_INFO, "test_bundleName2": con.CLEAR_CLOUD_DATA_AND_INFO }
try { try {
await ddm.Config.clean(account, appActions).then((data) => { await ddm.Config.clean(account, appActions).then((data) => {
console.info('Succeeding in cleaning cloud data'); console.info('Succeeding in cleaning cloud data');
}).catch((error) => { }).catch((error) => {
console.error('Failed to clean' + `, error code is ${error.code}, message is ${error.message}`); console.error('Failed to clean' + `, error code is ${error.code}, message is ${error.message}`);
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -336,15 +338,15 @@ static notifyDataChange(accountId: string,bundleName:string, callback: AsyncCall ...@@ -336,15 +338,15 @@ static notifyDataChange(accountId: string,bundleName:string, callback: AsyncCall
let account = "test_id"; let account = "test_id";
let bundleName = "test_bundleName"; let bundleName = "test_bundleName";
try { try {
await ddm.Config.notifyDataChange(account, bundleName, function (err, data) { await ddm.Config.notifyDataChange(account, bundleName, function (err, data) {
if (err == undefined) { if (err == undefined) {
console.info('Succeeding in notifying the change of data'); console.info('Succeeding in notifying the change of data');
} else { } else {
console.error('Failed to notify the change of data' + `, error code is ${err.code}, message is ${err.message}`); console.error('Failed to notify the change of data' + `, error code is ${err.code}, message is ${err.message}`);
} }
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
...@@ -375,13 +377,13 @@ static notifyDataChange(accountId: string,bundleName:string): Promise&lt;void&gt ...@@ -375,13 +377,13 @@ static notifyDataChange(accountId: string,bundleName:string): Promise&lt;void&gt
let account = "test_id"; let account = "test_id";
let bundleName = "test_bundleName"; let bundleName = "test_bundleName";
try { try {
await ddm.Config.notifyDataChange(account, bundleName).then((data) => { await ddm.Config.notifyDataChange(account, bundleName).then((data) => {
console.info('Succeeding in notifying the change of data'); console.info('Succeeding in notifying the change of data');
}).catch((error) => { }).catch((error) => {
console.error('Failed to notify the change of data' + `, error code is ${error.code}, message is ${error.message}`); console.error('Failed to notify the change of data' + `, error code is ${error.code}, message is ${error.message}`);
}); });
} catch (e) { } catch (e) {
console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`); console.error('An unexpected error occurred.' + `, error code is ${e.code}, message is ${e.message}`);
} }
``` ```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册