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

!8355 【轻量级 PR】:【OpenHarmony开源贡献者计划2022】修改拼写错误

Merge pull request !8355 from franck_lee/N/A
...@@ -1058,10 +1058,10 @@ const valueBucket3 = { ...@@ -1058,10 +1058,10 @@ const valueBucket3 = {
var valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3); var valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
rdbStore.batchInsert("EMPLOYEE", valueBuckets, function(status, insertNum) { rdbStore.batchInsert("EMPLOYEE", valueBuckets, function(status, insertNum) {
if (status) { if (status) {
console.log("bathInsert is failed, status = " + status); console.log("batchInsert is failed, status = " + status);
return; return;
} }
console.log("bathInsert is successful, the number of values that were inserted = " + insertNum); console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
}) })
``` ```
...@@ -1108,9 +1108,9 @@ const valueBucket3 = { ...@@ -1108,9 +1108,9 @@ const valueBucket3 = {
var valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3); var valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
let promise = rdbStore.batchInsert("EMPLOYEE", valueBuckets); let promise = rdbStore.batchInsert("EMPLOYEE", valueBuckets);
promise.then((insertNum) => { promise.then((insertNum) => {
console.log("bathInsert is successful, the number of values that were inserted = " + insertNum); console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
}).catch((status) => { }).catch((status) => {
console.log("bathInsert is failed, status = " + status); console.log("batchInsert is failed, status = " + status);
}) })
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册