未验证 提交 6b18a972 编写于 作者: O openharmony_ci 提交者: Gitee

!9691 延迟任务调度-代码规范

Merge pull request !9691 from 朱天怡/master
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
## 导入模块 ## 导入模块
```js ```js
import workScheduler from '@ohos.workScheduler' import workScheduler from '@ohos.workScheduler';
``` ```
## workScheduler.startWork ## workScheduler.startWork
...@@ -54,7 +54,7 @@ startWork(work: WorkInfo): boolean ...@@ -54,7 +54,7 @@ startWork(work: WorkInfo): boolean
} }
} }
var res = workScheduler.startWork(workInfo); var res = workScheduler.startWork(workInfo);
console.info("workschedulerLog res:" + res); console.info(`workschedulerLog res: ${res}`);
``` ```
## workScheduler.stopWork ## workScheduler.stopWork
...@@ -95,7 +95,7 @@ stopWork(work: WorkInfo, needCancel?: boolean): boolean ...@@ -95,7 +95,7 @@ stopWork(work: WorkInfo, needCancel?: boolean): boolean
} }
} }
var res = workScheduler.stopWork(workInfo, false); var res = workScheduler.stopWork(workInfo, false);
console.info("workschedulerLog res:" + res); console.info(`workschedulerLog res: ${res}`);
``` ```
## workScheduler.getWorkStatus ## workScheduler.getWorkStatus
...@@ -117,10 +117,10 @@ getWorkStatus(workId: number, callback : AsyncCallback\<WorkInfo>): void ...@@ -117,10 +117,10 @@ getWorkStatus(workId: number, callback : AsyncCallback\<WorkInfo>): void
```js ```js
workScheduler.getWorkStatus(50, (err, res) => { workScheduler.getWorkStatus(50, (err, res) => {
if (err) { if (err) {
console.info('workschedulerLog getWorkStatus failed, because:' + err.code); console.info(`workschedulerLog getWorkStatus failed, because: ${err.code}`);
} else { } else {
for (let item in res) { for (let item in res) {
console.info('workschedulerLog getWorkStatus success,' + item + ' is:' + res[item]); console.info(`workschedulerLog getWorkStatus success, ${item} is: ${res[item]}`);
} }
} }
}); });
...@@ -150,10 +150,10 @@ getWorkStatus(workId: number): Promise\<WorkInfo> ...@@ -150,10 +150,10 @@ getWorkStatus(workId: number): Promise\<WorkInfo>
```js ```js
workScheduler.getWorkStatus(50).then((res) => { workScheduler.getWorkStatus(50).then((res) => {
for (let item in res) { for (let item in res) {
console.info('workschedulerLog getWorkStatus success,' + item + ' is:' + res[item]); console.info(`workschedulerLog getWorkStatus success, ${item} is: ${res[item]}`);
} }
}).catch((err) => { }).catch((err) => {
console.info('workschedulerLog getWorkStatus failed, because:' + err.code); console.info(`workschedulerLog getWorkStatus failed, because: ${err.code}`);
}) })
``` ```
...@@ -181,9 +181,9 @@ obtainAllWorks(callback : AsyncCallback\<void>): Array\<WorkInfo> ...@@ -181,9 +181,9 @@ obtainAllWorks(callback : AsyncCallback\<void>): Array\<WorkInfo>
```js ```js
workScheduler.obtainAllWorks((err, res) =>{ workScheduler.obtainAllWorks((err, res) =>{
if (err) { if (err) {
console.info('workschedulerLog obtainAllWorks failed, because:' + err.code); console.info(`workschedulerLog obtainAllWorks failed, because: ${err.code}`);
} else { } else {
console.info('workschedulerLog obtainAllWorks success, data is:' + JSON.stringify(res)); console.info(`workschedulerLog obtainAllWorks success, data is: ${JSON.stringify(res)}`);
} }
}); });
``` ```
...@@ -205,9 +205,9 @@ obtainAllWorks(): Promise<Array\<WorkInfo>> ...@@ -205,9 +205,9 @@ obtainAllWorks(): Promise<Array\<WorkInfo>>
```js ```js
workScheduler.obtainAllWorks().then((res) => { workScheduler.obtainAllWorks().then((res) => {
console.info('workschedulerLog obtainAllWorks success, data is:' + JSON.stringify(res)); console.info(`workschedulerLog obtainAllWorks success, data is: ${JSON.stringify(res)}`);
}).catch((err) => { }).catch((err) => {
console.info('workschedulerLog obtainAllWorks failed, because:' + err.code); console.info(`workschedulerLog obtainAllWorks failed, because: ${err.code}`);
}) })
``` ```
...@@ -222,7 +222,7 @@ stopAndClearWorks(): boolean ...@@ -222,7 +222,7 @@ stopAndClearWorks(): boolean
```js ```js
let res = workScheduler.stopAndClearWorks(); let res = workScheduler.stopAndClearWorks();
console.info("workschedulerLog res:" + res); console.info(`workschedulerLog res: ${res}`);
``` ```
## workScheduler.isLastWorkTimeOut ## workScheduler.isLastWorkTimeOut
...@@ -250,9 +250,9 @@ isLastWorkTimeOut(workId: number, callback : AsyncCallback\<void>): boolean ...@@ -250,9 +250,9 @@ isLastWorkTimeOut(workId: number, callback : AsyncCallback\<void>): boolean
```js ```js
workScheduler.isLastWorkTimeOut(500, (err, res) =>{ workScheduler.isLastWorkTimeOut(500, (err, res) =>{
if (err) { if (err) {
console.info('workschedulerLog isLastWorkTimeOut failed, because:' + err.code); console.info(`workschedulerLog isLastWorkTimeOut failed, because: ${err.code}`);
} else { } else {
console.info('workschedulerLog isLastWorkTimeOut success, data is:' + res); console.info(`workschedulerLog isLastWorkTimeOut success, data is: ${res}`);
} }
}); });
``` ```
...@@ -281,10 +281,10 @@ isLastWorkTimeOut(workId: number): Promise\<boolean> ...@@ -281,10 +281,10 @@ isLastWorkTimeOut(workId: number): Promise\<boolean>
```js ```js
workScheduler.isLastWorkTimeOut(500) workScheduler.isLastWorkTimeOut(500)
.then(res => { .then(res => {
console.info('workschedulerLog isLastWorkTimeOut success, data is:' + res); console.info(`workschedulerLog isLastWorkTimeOut success, data is: ${res}`);
}) })
.catch(err => { .catch(err => {
console.info('workschedulerLog isLastWorkTimeOut failed, because:' + err.code); console.info(`workschedulerLog isLastWorkTimeOut failed, because: ${err.code}`);
}); });
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册