一、安裝啓動express服務mongodb
Administrator@PC201510301022 MINGW64 /i/shares/zhuomian/sell
$ npm install express-generator -g
$ express book_service數據庫
$ npm installexpress
$ DEBUG=book-service:* npm start
npm
訪問測試,mongoose
二、安裝mongo插件
Administrator@PC201510301022 MINGW64 /i/shares/zhuomian/sell/book_service
$ npm install mongoose --save測試
查看測試。ui
配置自動刷新配置信息,
$ npm install supervisor --save -g
$ supervisor bin/wwwthis
三、業務開發
用戶系統開發加密
3.1建立數據庫公用模塊common/db.js
var mongoose = require('mongoose');
var url = 'mongodb://16.25.14.15:27017/myblog';
mongoose.connect(url);
module.exports = mongoose;url
3.2建立用戶數據集models/user.js。
var mongoose = require('../common/db');
//用戶數據集
var user = new mongoose.Schema({
username: String,
password: String,
userMail: String,
userPhone: String,
userAdmin: Boolean,
userPower: Number,
userStop: Boolean,
})
//用戶的查找方法
user.statics.findAll = function(callBack){
this.find({},callBack);
}
//使用用戶名的查找方式
user.statics.findByUsername = function(name,callBack){
this.find({username:name},callBack);
}
//登陸匹配是否是擁有相同的用戶名和密碼而且沒有處於封停狀態
user.statics.findUserLogin = function(name,password,callBack){
this.find({username:name,password:password,userStop:false},callBack);
}
//驗證郵箱、電話和用戶找到用戶
user.statics.findUserPassord = function(name,mail,phone,callBack){
this.find({username:name,userMail:mail,userPhone:phone},callBack);
}
var userModel = mongoose.model('user', user);
module.exports = userModel;
3.3接口測試
注意參數傳入。
數據庫查看效果,
四、須要引入加密的中間件。
$ npm install crypto --save
配置token驗證。
訪問測試,
業務開發略。