forked from lastIndexOf/E-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
executable file
·101 lines (85 loc) · 2.15 KB
/
test.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const mongoose = require('mongoose')
const Schema = mongoose.Schema
const Admin = require('./Models/admin.js')
mongoose.connect('mongodb://localhost:27017/commerce', err => {
if (err)
console.error(er)
else
console.log('connection sussecc!')
})
//Vedio.find({})
// .skip(10)
// .limit(10)
// .exec((err, videos) => {
// if (err)
// console.error(err)
// else {
// console.log(videos)
// }
// })
new Admin({
name: '郑凡恺',
password: 'zhengfankai',
username: 'zhengfankai',
gender: '0',
role: 99
}).save((err, admin) => {
if (err)
console.error(err)
else {
console.log(admin)
}
})
// // const testSchema = new Schema({
// // name: String,
// // type: [
// // {
// // type: Schema.Types.ObjectId,
// // ref: 'Type'
// // }
// // ]
// // })
// // const typeSchema = new Schema({
// // name: String,
// // test: [
// // {
// // type: Schema.Types.ObjectId,
// // ref: 'Test'
// // }
// // ]
// // })
// // const Test = mongoose.model('Test', testSchema)
// // const Type = mongoose.model('Type', typeSchema)
// // // Test.findOne({}, (err, data) => {
// // // Type.update({}, { $addToSet: { test: data._id } }, err => {
// // // if (err)
// // // console.error(err)
// // // })
// // // })
// // Type.findOne({}, (err, type) => {
// // console.log(type)
// // })
// const mongoose = require('mongoose')
// const Vedio = require('./Models/vedio.js')
// const vedioChild = require('./Models/vediochildren.js')
// mongoose.connect('mongodb://localhost:27017/commerce', err => {
// if (err)
// console.error(er)
// else
// console.log('connection sussecc!')
// })
// // const arr = ["592c253d3a322270d55a0b9f", "592c25863a322270d55a0ba5", "592c25a83a322270d55a0ba8"]
// // Type.update({ _id: { $in: arr } }, { $addToSet: { vedios: '592d041c83aa3638181defba' } })
// Vedio.find({})
// .populate('children')
// .exec((err, vedios) => {
// console.log(vedios[0].children)
// })
// // Type.update({ _id: { $in: arr }}, {
// // $addToSet: { vedios: '592d041c83aa3638181defba' }
// // }, err => {
// // if (err)
// // console.error(err)
// // else
// // console.log('success')
// // })