2019年1月14日

摘要: update方法 modelName.update({需要替换的内容},{“$set”:{新的内容}},function(err,doc){}); 阅读全文

posted @ 2019-01-14 14:41 猫头唔食鱼 阅读(458) 评论(0) 推荐(0) 编辑

摘要: 使用remove()删除数据 remove({},function(err,doc){}) // 删除所有数据 remove({age:18},function(err,doc){}); //删除指定条件的数据 阅读全文

posted @ 2019-01-14 06:18 猫头唔食鱼 阅读(574) 评论(0) 推荐(0) 编辑

摘要: 1.创建Schema 2.创建model 3.在app.get()中调用查找方法find() 查找指定数据: 阅读全文

posted @ 2019-01-14 00:38 猫头唔食鱼 阅读(847) 评论(0) 推荐(0) 编辑