0

我尝试做的是这样的:

A_Schema.statics.init = function init() {
    A_Schema.find({}, {}, {
    }, function (error, docs) {
        if (!error) {
            console.log('There is no error.');
        }
        else {
            console.log(error);
        }
    });
};

我的意思是,使用A_Schema模型的 find 方法,但它一直在崩溃。

我想这是因为内部A_Schema必须是正确定义的模型而不是模式,但我不知道该怎么做。

我已经尝试过:

A_Schema.statics.init = function init() {
    mongoose.model('A_Schema', A_Schema).find({}, {}, {
    }, function (error, docs) {
        if (!error) {
            console.log('There is no error.');
        }
        else {
            console.log(error);
        }
    });
};

A_Schema.statics.init = function init() {
    mongoose.model('A_Schema').find({}, {}, {
    }, function (error, docs) {
        if (!error) {
            console.log('There is no error.');
        }
        else {
            console.log(error);
        }
    });
};

但它一直在崩溃。

你能帮助我吗?

提前致谢

迪奥斯尼

4

1 回答 1

0

抱歉,我似乎忽略了mongoose文档。

mongoose 文档中可以看到示例:

animalSchema.statics.findByName = function (name, cb) {
  this.find({ name: new RegExp(name, 'i') }, cb);
}

因此,在静态内部this必须使用引用而不是命名模型。

于 2012-12-10T04:27:23.473 回答