Skip to content

Commit a458b16

Browse files
committed
fix: demo 更新
1 parent 33eb152 commit a458b16

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

demo/CIDemos/meta.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const createDataset = {
4040
console.log(err.message);
4141
} else {
4242
// 处理请求成功
43-
console.log(data.Body && JSON.parse(data.Body));
43+
console.log(data);
4444
}
4545
}
4646
);
@@ -82,7 +82,7 @@ export const updateDataset = {
8282
console.log(err.code, err.message);
8383
} else {
8484
// 处理请求成功
85-
console.log(data.Body && JSON.parse(data.Body));
85+
console.log(data);
8686
}
8787
}
8888
);
@@ -120,7 +120,7 @@ export const deleteDataset = {
120120
console.log(err.code, err.message);
121121
} else {
122122
// 处理请求成功
123-
console.log(data.Body && JSON.parse(data.Body));
123+
console.log(data);
124124
}
125125
}
126126
);
@@ -158,7 +158,7 @@ export const describeDatasets = {
158158
console.log(err.code, err.message);
159159
} else {
160160
// 处理请求成功
161-
console.log(data.Body && JSON.parse(data.Body));
161+
console.log(data);
162162
}
163163
}
164164
);
@@ -197,7 +197,7 @@ export const describeDataset = {
197197
console.log(err.code, err.message);
198198
} else {
199199
// 处理请求成功
200-
console.log(data.Body && JSON.parse(data.Body));
200+
console.log(data);
201201
}
202202
}
203203
);
@@ -237,7 +237,7 @@ export const createDatasetBinding = {
237237
console.log(err.code, err.message);
238238
} else {
239239
// 处理请求成功
240-
console.log(data.Body && JSON.parse(data.Body));
240+
console.log(data);
241241
}
242242
}
243243
);
@@ -277,7 +277,7 @@ export const deleteDatasetBinding = {
277277
console.log(err.code, err.message);
278278
} else {
279279
// 处理请求成功
280-
console.log(data.Body && JSON.parse(data.Body));
280+
console.log(data);
281281
}
282282
}
283283
);
@@ -314,7 +314,7 @@ export const describeDatasetBinding = {
314314
console.log(err.code, err.message);
315315
} else {
316316
// 处理请求成功
317-
console.log(data.Body && JSON.parse(data.Body));
317+
console.log(data);
318318
}
319319
}
320320
);
@@ -353,7 +353,7 @@ export const describeDatasetBindings = {
353353
console.log(err.code, err.message);
354354
} else {
355355
// 处理请求成功
356-
console.log(data.Body && JSON.parse(data.Body));
356+
console.log(data);
357357
}
358358
}
359359
);
@@ -411,7 +411,7 @@ export const createFileMetaIndex = {
411411
console.log(err.code, err.message);
412412
} else {
413413
// 处理请求成功
414-
console.log(data.Body && JSON.parse(data.Body));
414+
console.log(data);
415415
}
416416
}
417417
);
@@ -451,7 +451,7 @@ export const deleteFileMetaIndex = {
451451
console.log(err.code, err.message);
452452
} else {
453453
// 处理请求成功
454-
console.log(data.Body && JSON.parse(data.Body));
454+
console.log(data);
455455
}
456456
}
457457
);
@@ -488,7 +488,7 @@ export const describeFileMetaIndex = {
488488
console.log(err.message);
489489
} else {
490490
// 处理请求成功
491-
console.log(data.Body && JSON.parse(data.Body));
491+
console.log(data);
492492
}
493493
}
494494
);
@@ -543,7 +543,7 @@ export const updateFileMetaIndex = {
543543
console.log(err.code, err.message);
544544
} else {
545545
// 处理请求成功
546-
console.log(data.Body && JSON.parse(data.Body));
546+
console.log(data);
547547
}
548548
}
549549
);
@@ -604,7 +604,7 @@ export const datasetSimpleQuery = {
604604
console.log(err.code, err.message);
605605
} else {
606606
// 处理请求成功
607-
console.log(data.Body && JSON.parse(data.Body));
607+
console.log(data);
608608
}
609609
}
610610
);
@@ -651,7 +651,7 @@ export const datasetFaceSearch = {
651651
console.log(err.code, err.message);
652652
} else {
653653
// 处理请求成功
654-
console.log(data.Body && JSON.parse(data.Body));
654+
console.log(data);
655655
}
656656
}
657657
);
@@ -698,7 +698,7 @@ export const searchImage = {
698698
console.log(err.code, err.message);
699699
} else {
700700
// 处理请求成功
701-
console.log(data.Body && JSON.parse(data.Body));
701+
console.log(data);
702702
}
703703
}
704704
);

0 commit comments

Comments
 (0)