1

私のアプリはローカルで正常に動作します。

Heroku サーバーにプッシュすると、次のエラーでクラッシュすることがあります。

2012-12-28T10:00:53+00:00 heroku[web.1]: Starting process with command `node server.js`
2012-12-28T10:00:54+00:00 app[web.1]: 
2012-12-28T10:00:54+00:00 app[web.1]: /app/node_modules/mongoose/lib/index.js:261
2012-12-28T10:00:54+00:00 app[web.1]:       throw new mongoose.Error.MissingSchemaError(name);
2012-12-28T10:00:54+00:00 app[web.1]:             ^
2012-12-28T10:00:54+00:00 app[web.1]: MissingSchemaError: Schema hasn't been registered for model "Activity".
2012-12-28T10:00:54+00:00 app[web.1]: Use mongoose.model(name, schema)
2012-12-28T10:00:54+00:00 app[web.1]:     at Mongoose.model (/app/node_modules/mongoose/lib/index.js:261:13)
2012-12-28T10:00:54+00:00 app[web.1]:     at Object.<anonymous> (/app/app/models/user.js:8:25)
2012-12-28T10:00:54+00:00 app[web.1]:     at Module._compile (module.js:449:26)
2012-12-28T10:00:54+00:00 app[web.1]:     at Object.Module._extensions..js (module.js:467:10)
2012-12-28T10:00:54+00:00 app[web.1]:     at Module.load (module.js:356:32)
2012-12-28T10:00:54+00:00 app[web.1]:     at Function.Module._load (module.js:312:12)
2012-12-28T10:00:54+00:00 app[web.1]:     at Module.require (module.js:362:17)
2012-12-28T10:00:54+00:00 app[web.1]:     at require (module.js:378:17)
2012-12-28T10:00:54+00:00 app[web.1]:     at /app/server.js:23:3
2012-12-28T10:00:54+00:00 app[web.1]:     at Array.forEach (native)
2012-12-28T10:00:55+00:00 heroku[web.1]: Process exited with status 1
2012-12-28T10:00:55+00:00 heroku[web.1]: State changed from starting to crashed

私のserver.jsでは、次のコードでモデルをロードしています:

var models_path = __dirname + '/app/models'
fs.readdirSync(models_path).forEach(function (file) {
     require(models_path+'/'+file)
})

そして、私の activity.js は次のとおりです。

var mongoose = require('mongoose')
  , Schema = mongoose.Schema
  , moment = require('moment')

var schemaOptions = {
    toJSON: {
      virtuals: true
    }
};
var ActivitySchema = new Schema({
    venue: {type : Schema.ObjectId, ref : 'Venue'}
  , user: {type : Schema.ObjectId, ref : 'User'}
  , createdAt: {type : Date, default : Date.now}
  , rate: Number
  , message : String
  , source : String 
}, schemaOptions)
mongoose.model('Activity', ActivitySchema)

ActivitySchema.index({ "user": 1, "venue"  : 1 }, { unique: true })

var modifiedAt = require('../../config/plugins.js');
ActivitySchema.plugin(modifiedAt, { index: false });

ActivitySchema.virtual('summary').get(function () {
        moment.lang('en');

    return moment(this.createdAt).fromNow()  + ' via ' + this.source;
});

奇妙なことに、アプリがクラッシュすることもありますが、機能することもあります。解決するにはどうすればよいですか?

4

2 に答える 2

0

mongoose の 'MissingSchemaError' を解決するためにコードで実行しなければならなかったことは、mongoose をパラメーターとして受け取る関数をエクスポートすることでした。

このようなもの。

module.exports = function (mongoose) {

    var GeoSchema = new mongoose.Schema({
        loc:{ type:[Number], index:'2d'}
    });

    return GeoSchema;
};
于 2013-01-03T19:23:09.980 に答える
0

私は同じ問題に遭遇しました。users モジュールに対応するプロファイル ドキュメントが作成されるように、users モジュールを変更しました。その users モジュールに Profile スキーマをロードさせると、ファイルの先頭にロードしたときに同じエラーがスローされます。使用していたコードの範囲内に配置すると、問題が修正されました。

    var Profile = mongoose.model('Profile');

上記の行をコードに移動する必要がありました(mongoが作成される前に使用しようとしていたタイミングの問題だと思います

于 2015-02-22T00:40:53.957 に答える