为了账号安全,请及时绑定邮箱和手机立即绑定

schemas中问题:

schemas中问题:

Elly 2016-05-11 09:25:45
问题:MovieSchema.pre('save',function(next){^^^^^^^^^^^SyntaxError: Unexpected identifier源代码:var mongoose = require('mongoose')//骨架模版var MovieSchema = new mongoose.Schema({    doctor:String,    title:String,    language:String,    country:String,    year:Number,    summary:String,    flash:String,    poster:String,    meta:{        createAt:{            type:Date,            default:Date.now()        },        updateAt:{            type:Date,            default:Date.now()        }    }//为模式增加方法MovieSchema.pre('save',function(next){    if (this.isNew) {        this.meta.createAt = this.meta.updateAt = Date.now()    }else{        this.meta.updateAt = Date.now()    }})//添加静态方法MovieSchema.statics ={    fetch:function(cb){        return this           .find({})           .sort('meta.updateAt')           .exec(cb)    },    findById:function(id,cb){        return this               .findOne({_id:id})               .exec(cb)    }}module.exports = MovieSchema
查看完整描述

1 回答

?
一头飞奔的猪

TA贡献9条经验 获得超17个赞

//为模式增加方法   上面少个});

查看完整回答
1 反对 回复 2016-05-11
  • 1 回答
  • 0 关注
  • 1441 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信