-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathdata.js
53 lines (47 loc) · 1.02 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// const {
// AuthorModel
// } = require('./model');
// // 插入数据
// const bookList = [
// {
// bookId: 26351021,
// name: '你不知道的JavaScript(上卷)'
// },
// {
// bookId: 26854244,
// name: '你不知道的JavaScript(中卷)'
// },
// {
// bookId: 27620408,
// name: '你不知道的JavaScript(下卷)'
// }
// ];
// const authorList = [
// {
// authorId: 1,
// name: 'Kyle Simpson',
// bookIds: [
// 26351021,
// 26854244,
// 27620408
// ]
// }
// ]
// // const res = await BookModel.find();
// // console.log('find', res);
// bookList.forEach(async item => {
// try {
// const res = await BookModel.create(item);
// console.log('res', res);
// } catch (err) {
// console.log('err:', err.message);
// }
// })
// authorList.forEach(async item => {
// try {
// const res = await AuthorModel.create(item);
// console.log('res', res);
// } catch (err) {
// console.log('err:', err.message);
// }
// })