最新回答 / 不赢
出现类似于Cannot read property 'username' of null 之类的空指针异常,一般都是对象为空值,鉴于你问题描述不够清楚,可能是:渲染本页面的时候post没有传递过来或者为空
2016-05-24
最赞回答 / 柏树4063064
UserSchema.pre('save',function(next){ var user = this; console.log('this is first'); //保存新数据 if(this.isNew){ this.meta.createAt = this.meta.updateAt =Date.now(); } else{ //更新数据 this.meta.updateAt = Date.now(); } bcrypt.genSalt(SALT_WORK_FACTOR,function...
2016-05-21
码完,谢谢scott。模版用的ejs,遗憾的是我没有使用Grunt做测试。
https://github.com/unclepan/imooc_node2
https://github.com/unclepan/imooc_node2
2016-05-16
最赞回答 / Scarecrow_
bcrypt.compare(_password, user.password, function(err, isMatch) { if (err){ console.log(err); return cb(err) } //console.log(_password+user.password); //cb(null, isMatch) //上面代码出错,始终验证密码错误,自己修正如下 if(_password==user.passwo...
2016-05-13
已采纳回答 / 晨钟暮鼓
是的,这是因为在修改的时候啊没有对电影原来所属的分类文档中的movies字段中的电影主键移除,你可以重写一下电影修改这个方法;例如:// 电影的电影分类改了 if(oldCategory != movie.category){ //1、修改前分类电影集合移除这个电影 var oldCatgories = Category.findById(oldCategory,function(err,category){ var index = category.movies....
2016-05-11
if item.poster.indexOf('http:') > -1
这段最好把‘:’去掉,因为豆瓣是https开头的,所有老师做的网站首页才会出现图片显示错误!!!
这段最好把‘:’去掉,因为豆瓣是https开头的,所有老师做的网站首页才会出现图片显示错误!!!
2016-05-11
用bcryptjs ,参考地址 http://npm.taobao.org/package/bcryptjs
npm install bcryptjs
var bcrypt = require('bcryptjs');
npm install bcryptjs
var bcrypt = require('bcryptjs');
2016-05-09