1.连接数据库mongodDB
引入包+调用属性(mongoClient)
连接数据库(MongoDB client)
client 数据库服务(程序)
var db = client.db("test")
client.close()
db 一个具体的数据库对象
var collection1 = db.createCollection("集合名")
var collection2 = db.collection("集合名")
collection 指的是一个集合对象
2.增
collection 指的是一个集合对象
collection2.insertOne({},callback(err,result))
collection2.insertMany({},callback(err,result))
3.删
4.改
5.查
var documents = collection2.find({条件})
documents.toArray(callback(err,data))
documents.sort({age:1}) 按照某一个属性对find到的数据进行排序 1正序 -1倒序
documents.limit(2) 找出find到的数据一部分
documents.skip(2) 跳过多少条数据