-
Notifications
You must be signed in to change notification settings - Fork 0
/
fileUpdate.js
64 lines (62 loc) · 2.57 KB
/
fileUpdate.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
54
55
56
57
58
59
60
61
62
63
var db = connect('note')
// db.fileContent.insert({'menuId': '1','menuPId':'1', content: '123'})
// db.fileContent.insert({'menuId': '2','menuPId':'1', content: '234'})
// db.fileContent.insert({'menuId': '3','menuPId':'1', content: '345'})
// db.fileContent.insert({'menuId': '1','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '2','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '3','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '4','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '5','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '6','menuPId':'2', content: ''})
// db.fileContent.insert({'menuId': '7','menuPId':'2', content: ''})
//
// db.fileContent.insert({'menuId': '1','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '2','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '3','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '4','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '5','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '6','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '7','menuPId':'3', content: ''})
// db.fileContent.insert({'menuId': '8','menuPId':'3', content: ''})
// db.fileContent.update({
// title: 'css'
// }, {$set: {
// type: 0, // 文件夹
// id: 1,
// children: [
// {title: 'resetCss',type: 1,pid:1,id:1}, // 文件
// {title: '居中',type: 1,pid:1,id:2},
// {title: '布局',type: 1,pid:1,id:3}
// ]
// }})
// db.menu.update({
// title: 'js高阶'
// }, {$set: {
// type: 0,
// id: 2,
// children: [
// {title: '内存管理',type: 1,pid:2,id:1},
// {title: '代码质量',type: 1,pid:2,id:2},
// {title: '代码可靠性',type: 1,pid:2,id:3},
// {title: 'compose pipe',type: 2,pid:3,id:4},
// {title: '高阶函数',type: 1,pid:2,id:5},
// {title: '常用函数',type: 1,pid:2,id:6},
// {title: '防抖和截流',type: 1,pid:2,id:7}
// ]
// }})
// db.menu.update({
// title: 'typescript'
// }, {$set: {
// type: 0,
// id: 3,
// children: [
// {title: '基础类型',type: 1,pid:3,id:1},
// {title: '接口',type: 1,pid:3,id:2},
// {title: '数组',type: 1,pid:3,id:3},
// {title: '函数类型',type: 1,pid:3,id:4},
// {title: '枚举',type: 1,pid:3,id:5},
// {title: '类修饰符',type: 1,pid:3,id:6},
// {title: '类型断言',type: 1,pid:3,id:7},
// {title: '泛型',type: 1,pid:3,id:8}
// ]
// }})