mongodb
mongodb安装如果是Mac的请看 这篇文章 操作mongodb的插件有很多,这里我们使用mongoose 安装插件
npm install mongoose
新建一个config文件夹...bcrypt
router.post('/register',(req,res)=>{
// console.log(req.body)
// 查询数据库中是否有邮箱
User.findOne...bcrypt.hash(newUser.password, salt, (err, hash)=>{
// err是异常 hash是加密后的...*/
router.post('/register',(req,res)=>{
// console.log(req.body)
// 查询数据库中是否有邮箱
User.findOne...bcrypt.hash(newUser.password, salt, (err, hash)=>{
// err是异常 hash是加密后的