Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I encountered the situation that I needed the model before defining it. In someMethod(), I tried this.model('Goods') to retrieve the model. I wondered that if there's a better way.

var mongoose = require('mongoose')
    , GoodsSchema = require('./schemas').GoodsSchema
    , GoodsModel;


GoodsSchema.methods.someMethod = function () {
    // need GoodsModel here
    // GoodsModel.find()....    
};

GoodsModel = mongoose.model('Goods', GoodsSchema);
module.exports = GoodsModel;
share|improve this question

2 Answers

up vote 1 down vote accepted
this.model("Goods").find()

See here.

share|improve this answer
Are there differences between the two approaches? – trantor Aug 16 '12 at 12:54
Using my approach you don't need to define a new variable. – matz3 Aug 20 '12 at 6:00

You can (and should) simply do

var model = mongoose.model( 'Goods' );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.