我通過Mongoose使用Nodejs,ExpressJs,MongoDB。我創建了一個簡單的UserSchema。我將我的代碼分成多個文件,因爲我預見它們會變得複雜。不能返回值到貓鼬/ mongodb和nodejs的響應
URL'/ api/users'被配置爲調用'routes/user.js'中的列表函數,該函數按預期發生。 UserSchema的列表函數被調用,但它沒有返回任何東西給調用函數,因此沒有結果。
我在做什麼錯?
我認爲我做錯了什麼與userSchema.statics.list
的功能定義,將其建模app.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);
});
}
它給出了什麼錯誤? –