我遇到的问题是,mongoose不允许我实例化一个模式类型的对象,在一个' pre'方法,不同的架构。
我有2个架构 - '用户'和' Tickit'。
user.js的
var mongoose = require('mongoose');
var bcrypt = require('bcrypt-nodejs');
var Schema = mongoose.Schema;
var Tickit = require('../models/Tickit');
var userSchema = new Schema({
email : String,
password : String,
tickits : [Tickit.tickitSchema]
});
userSchema.methods.generateHash = function(password) {
return bcrypt.hashSync(password, bcrypt.genSaltSync(8), null);
};
userSchema.methods.validPassword = function(password) {
return bcrypt.compareSync(password, this.password);
};
module.exports = mongoose.model('User', userSchema);
和Tickit.js
var mongoose = require('mongoose');
var User = require('../models/User');
var Schema = mongoose.Schema;
var tickitSchema = new Schema({
title: String,
description: String,
author : { type: Schema.Types.ObjectId, ref: 'User' },
comments: [{body:"string", by: mongoose.Schema.Types.ObjectId}]
});
tickitSchema.pre('save', function(next){
var user = new User();
user.tickits.push ({id:this._id});
user.save(function(err){
if(err)
res.send(err)
.populate('tickits')
.exec(function(err, blah){
if(err) res.send(err);
})
res.json(blah);
})
next();
})
module.exports = mongoose.model('Tickit', tickitSchema);
我尝试使用Tickit中的pre方法填充了“Tickits'每次创建Tickit时,User模式中的数组都带有该Tickit的id。
然而,在我的应用程序中,当我创建一个tickit时,应用程序崩溃,我收到此错误
var user = new User();
^
TypeError: object is not a function
答案 0 :(得分:0)
尝试在函数中定义用户:
tickitSchema.pre('save', function(next){
var User = require('../models/User');
// Code
});