使用外部文件中的模型填充猫鼬架构属性



我试图填充猫鼬模式中的属性,该架构引用另一个外部模型/模式中的属性。

当两个模型/模式和查询都在同一个文件中时,我可以让猫鼬种群/引用工作,但我有我的架构设置,所以模型都在/models 目录中自己的文件中,/models/index.js 将返回一个模型对象(显然索引.js知道排除自己)

我遇到的问题是,由于模式/模型都在它们自己的文件中,当我指定模型名称作为引用时,它不起作用。我尝试将该特定模型本身加载到另一个模型中,但这也失败了。

仅供参考:我对MongoDB和Mongoose相当陌生,所以下面的代码非常非常粗糙,主要是我在学习的过程中

组模型

// models/group.js
'use strict'
module.exports = Mongoose => {
    const Schema = Mongoose.Schema
    const modelSchema = new Schema({
        name: {
            type: String,
            required: true,
            unique: true
        }
    })
    return Mongoose.model( ModelUtils.getModelName(), modelSchema )
}

帐户模型

// models/account.js
'use strict'
module.exports = Mongoose => {
    // I tried loading the specific model being referenced, but that doesn't work
    const Group = require('./group')( Mongoose )
    const Schema = Mongoose.Schema
    const modelSchema = new Schema({
        username: {
            type: String,
            required: true,
            unique: true
        },
        _groups: [{
            type: Schema.Types.ObjectId,
            ref: 'Group'
        }]
    })
    // Trying to create a static method that will just return a
    // queried username, with its associated groups
    modelSchema.statics.findByUsername = function( username, cb ) {
        return this
            .findOne({ username : new RegExp( username, 'i' ) })
            .populate('_groups').exec(cb)
    }
    return Mongoose.model( ModelUtils.getModelName(), modelSchema )
}

正如您在帐户模型中看到的那样,我尝试引用组模型作为_groups元素,然后在 modelSchema.statics.findByUsername 静态方法中填充关联组时查询帐户。

主应用程序文件

// app.js
const models = require('./models')( Mongoose )
models.Account.findByUsername('jdoe', ( err, result ) => {
    console.log('result',result)
    Mongoose.connection.close()
})

我不清楚ModelUtils.getModelName()是如何实现的。我认为问题应该在这里,因为在我更改您的代码后它运行良好,如下所示

 // group.js
return Mongoose.model( 'Group', modelSchema );
 // account.js
return Mongoose.model( 'Account', modelSchema );
// app.js
const models = require('./models/account.js')( Mongoose );
models.findByUsername('jdoe', ( err, result ) => {

相关内容

  • 没有找到相关文章

最新更新