mongodb
增删改查
增:
db.createCollection("name", {options:number}):显式地创建集合
db.addUser("userName", "pwd123", true):添加用户、设置密码、是否只读
db.users.save({name: ‘zhangsan', age: 25, sex: true}):添加数据集合
删:
db.dropDatabase():删除当前使用的数据库
db.removeUser("name"):删除用户
db.users.remove({age: 132}):删除集合数据
查:
show dbs:查询所有数据库
db或db.getName():查询当前使用的数据库
db.stats():显示当前db的状态
db.version():显示当前版本
db.getMongo():查看当前db的链接机器地址
db.name.isCapped():判断name集合是否为定容量
db.printCollectionStats():显示当前db的所有聚集集合
db.auth("userName", "123123"):数据库认证(安全模式)
show users:显示当前所有用户
db.userInfo.find():查询所有记录,相当于:select* from userInfo
db.userInfo.distinct("name"):会过滤掉name中的相同数据,相当于:select distict name from userInfo
db.userInfo.find({"age": 22}):查询age=22的记录
相当于: select * from userInfo where age = 22
db.userInfo.find({age: {$gt: 22}}):查询age > 22的记录
相当于:select * from userInfo where age >22;
同理:gt:> gte:>= lt:< lte:<=
db.userInfo.find({age: {$gte: 23, $lte: 26}}):查询age >= 23 并且 age <= 26
db.userInfo.find({name: /mongo/}):查询name中包含 mongo的数据
db.userInfo.find({name: /^mongo/}):查询name中以mongo开头的
db.userInfo.find({}, {name: 1, age: 1}):查询指定列name、age数据
db.userInfo.find({age: {$gt: 25}}, {name: 1, age: 1}):、查询指定列name、age数据 和 age > 25 的数据
db.userInfo.find().sort({age: 1}):按键值(age)升序,-1为降序
db.userInfo.find({name: 'zhangsan', age: 22}):查询name = zhangsan, age = 22的数据
db.userInfo.find().limit(5):查询前5条数据
db.userInfo.find().skip(10):查询10条以后的数据
db.userInfo.find().limit(10).skip(5):查询在5-10之间的数据
db.userInfo.find({$or: [{age: 22}, {age: 25}]}):查找age = 22或age = 25;
db.userInfo.findOne()或db.userInfo.find().limit(1):查询第一条数据
db.userInfo.find({age: {$gte: 25}}).count():查询某个结果集的记录条数
db.userInfo.find({sex: {$exists: true}}).count():按照某列进行排序
改:
use name :切换/创建 数据库
,当创建一个集合(table)的时候会自动创建当前数据库
db.getCollectionNames():得到当前db的所有聚集集合
db.getCollection("name"):得到指定名称的集合
db.users.update({age: 25}, {$set: {name: 'changeName'}}, false, true):update users set name = ‘changeName' where age = 25;
db.users.update({name: 'Lisi'}, {$inc: {age: 50}}, false, true):update users set age = age + 50 where name = ‘Lisi';
db.users.update({name: 'Lisi'}, {$inc: {age: 50}, $set: {name: 'hoho'}}, false, true):update users set age = age + 50, name = ‘hoho' where name = ‘Lisi';
其它操作
错误:
查询之前的错误信息:
db.getPrevError();
清除错误记录:
db.resetError();
帮助:
help db.help()
db.yourColl.help()
db.youColl.find().help()
rs.help()
克隆:
db.cloneDatabase(“127.0.0.1”):将指定机器上的数据库的数据克隆到当前数据库
db.copyDatabase("mydb", "temp", "127.0.0.1"):将本机的mydb的数据复制到temp数据库中
修复:
db.repairDatabase(): 修复当前数据库
索引:
创建索引:
db.userInfo.ensureIndex({name: 1});
db.userInfo.ensureIndex({name: 1, ts: -1});
查询当前聚集集合所有索引:
db.userInfo.getIndexes();
查看总索引记录大小:
db.userInfo.totalIndexSize();
读取当前集合的所有index信息:
db.users.reIndex();
删除指定索引:
db.users.dropIndex("name_1");
删除所有索引索引:
db.users.dropIndexes();
查询修改删除:
db.users.findAndModify({
query: {age: {$gte: 25}},
sort: {age: -1},
update: {$set: {name: 'a2'}, $inc: {age: 2}},
remove: true
});
db.runCommand({ findandmodify : "users",
query: {age: {$gte: 25}},
sort: {age: -1},
update: {$set: {name: 'a2'}, $inc: {age: 2}},
remove: true
});
update 或 remove 其中一个是必须的参数; 其他参数可选。
参数 | 详解 | 默认值 |
---|---|---|
query | 查询过滤条件 | {} |
sort | 如果多个文档符合查询过滤条件,将以该参数指定的排列方式选择出排在首位的对象,该对象将被操作 | {} |
remove | 若为true,被选中对象将在返回前被删除 | N/A |
update | 一个 修改器对象 | N/A |
new | 若为true,将返回修改后的对象而不是原始对象。在删除操作中,该参数被忽略。 | false |
upsert | 创建新对象若查询结果为空。 示例 (1.5.4+) | false |
fields | 参见Retrieving a Subset of Fields (1.5.0+) | All fields |
注:函数不加括号,貌似输出源码
express web
Request 对象 - request 对象表示 HTTP 请求,包含了请求查询字符串,参数,内容,HTTP 头部等属性。常见属性有:
req.app:当callback为外部文件时,用req.app访问express的实例
req.baseUrl:获取路由当前安装的URL路径
req.body / req.cookies:获得「请求主体」/ Cookies
req.fresh / req.stale:判断请求是否还「新鲜」
req.hostname / req.ip:获取主机名和IP地址
req.originalUrl:获取原始请求URL
req.params:获取路由的parameters
req.path:获取请求路径
req.protocol:获取协议类型
req.query:获取URL的查询参数串
req.route:获取当前匹配的路由
req.subdomains:获取子域名
req.accpets():检查请求的Accept头的请求类型
req.acceptsCharsets / req.acceptsEncodings /
req.acceptsLanguages
req.get():获取指定的HTTP请求头
req.is():判断请求头Content-Type的MIME类型
Response 对象 - response 对象表示 HTTP 响应,即在接收到请求时向客户端发送的 HTTP 响应数据。常见属性有:
res.app:同req.app一样
res.append():追加指定HTTP头
res.set()在res.append()后将重置之前设置的头
res.cookie(name,value [,option]):设置Cookie
opition: domain / expires / httpOnly / maxAge / path / secure / signed
res.clearCookie():清除Cookie
res.download():传送指定路径的文件
res.get():返回指定的HTTP头
res.json():传送JSON响应
res.jsonp():传送JSONP响应
res.location():只设置响应的Location HTTP头,不设置状态码或者close response
res.redirect():设置响应的Location HTTP头,并且设置状态码302
res.send():传送HTTP响应
res.sendFile(path [,options] [,fn]):传送指定路径的文件 -会自动根据文件extension设定Content-Type
res.set():设置HTTP头,传入object可以一次设置多个头
res.status():设置HTTP状态码
res.type():设置Content-Type的MIME类型