Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

怎么使用mongolass驱动库连接mongodb数据库呀?

$
0
0

exports.User = mongolass.model(‘User’, { name: { type: ‘string’ }, password: { type: ‘string’ }, avatar: { type: ‘string’ }, gender: { type: ‘string’, enum: [‘m’, ‘f’, ‘x’] }, bio: { type: ‘string’ } }); exports.User.index({ name: 1 }, { unique: true }).exec();// 根据用户名找到用户,用户名全局唯一 上面都是什么意思呀? 还有我不是太会mongolass,有没有比较好的资料学一下mongolass这个mongodb驱动库呀?


Viewing all articles
Browse latest Browse all 14821

Trending Articles