我尝试做的是这样的:
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);
}
});
};
但它一直在崩溃。
你能帮助我吗?
提前致谢
迪奥斯尼