我有一个user.js文件,用于我网站中的用户模型。 这是用户架构:
var UserSchema = mongoose.Schema({
username: {
type: String,
index:true
},
password: {
type: String
},
email: {
type: String
},
name: {
type: String
},
avatar: {
type: String
}
});
UserSchema.plugin(passportLocalMongoose);
var User = module.exports = mongoose.model('User', UserSchema);
当我想在另一个文件中使用函数findOne()作为用户配置文件时,它给了我在标题中输入的错误。
这是文件的代码:
var User = require('../models/user.js');
router.get("/:username", function(req,res){
User.findOne(req.params.username, function(err,foundUser){
if(err){
req.flash("error", "Something went wrong.");
return res.redirect("/");
}
res.render("show",{user:foundUser});
})
});
答案 0 :(得分:1)
User.findOne({where: {username: req.params.username}}, function(err,foundUser){
//rest of code
})