我正在通过 Mongoose 使用 Nodejs、ExpressJs、MongoDB。我创建了一个简单的 UserSchema 。我将代码分成多个文件,因为我预见它们会变得复杂。
url '/api/users' 被配置为调用'routes/user.js' 中的列表函数,这正如预期的那样。UserSchema 的 list 函数确实被调用,但它没有向调用函数返回任何内容,因此没有结果输出。
我究竟做错了什么 ?
我想我在 userSchema.statics.list 的函数定义上做错了
应用程序.js
users_module = require('./custom_modules/users.js'); // I have separated the actual DB code into another file
mongoose.connect('mongodb:// ******************');
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function callback() {
users_module.init_users();
});
app.get('/api/users', user.list);
custom_modules/users.js
function init_users() {
userSchema = mongoose.Schema({
usernamename: String,
hash: String,
});
userSchema.statics.list = function () {
this.find(function (err, users) {
if (!err) {
console.log("Got some data"); // this gets printed
return users; // the result remains the same if I replace this with return "hello"
} else {
return console.log(err);
}
});
}
UserModel = mongoose.model('User', userSchema);
} // end of init_users
exports.init_users = init_users;
路线/user.js
exports.list = function (req, res) {
UserModel.list(function (users) {
// this code never gets executed
console.log("Yay ");
return res.json(users);
});
}