我目前正在开发一个小型单页应用程序,该应用程序允许用户使用 PassportJs 和 Mongoose 登录。
我正在尝试做的一件事是允许用户登录,并且每个用户都有一个唯一的待办事项/任务列表,这些列表是与该用户关联的项目。
我已经能够完成第一部分......用户可以登录并使用jade #{user.username}访问快速/护照会话,因此登录用户时会看到“欢迎,[user.username]”。
现在我添加了一个表单(用户登录时可以访问)并且表单显示未定义。我不确定是我的 Mongoose 架构设计还是导致问题的路由。感谢您阅读本文,这是我的代码:
猫鼬模式
mongoose.connect('mongodb://localhost/poplivecore')
var Schema = mongoose.Schema;
var ObjectId = Schema.ObjectId;
var user = new Schema({
username: String,
password: String,
email: String,
todos: [Todo]
});
var Todo = new Schema({
name: {type: String, default : ''},
user: {type: Schema.ObjectId, ref: 'user'},
createdAt : {type : Date, default : Date.now}
})
var Todo = mongoose.model('Todo', Todo);
var user = mongoose.model('user', user);
这是我的快速路线: //WORKING....这条路线是登录用户看到的路线,形成帖子
app.get('/home', ensureAuthenticated ,function(req, res){
res.render('home', { user: req.user});
});
//WORKING...此路由允许用户发布/提交登录
app.post('/login',
passport.authenticate('local', { failureRedirect: '/login', failureFlash: true }),
function(req, res) {
res.redirect('/home');
});
//WORKING....This route allows user to create a user/account
app.post('/create', function(req, res, next){
var user = new user({
"username": req.body.username,
"password" : req.body.password,
"email" : req.body.email});
user.save(function (err) {
if (!err) {
res.redirect('/home');
}
else {
res.redirect('/');
}
});
});
**//NOT WORKING..Post used in the form inside the logged in Area, that adds a 'todo'**
app.post('/todo', function(req, res){
var todo = new todo(req.body.name);
todo.save(function (err) {
if (!err) {
res.redirect('/home');
}
else {
res.redirect('/fail');
}
});
});
Jade Form,用于添加待办事项
enter code here
form(method='post', action='/todo')
//input(type='hidden', value= user._id)#userId
fieldset
label Todo
div.input
input(name='todo.name', type='todo.name', class='xlarge')
div.actions
input(type='submit', value='Save', class='btn primary')
button(type='reset', class='btn') Cancel
如果您需要查看更多代码,我可以在 github 上发布...谢谢。
根据 'numbers1311407' 建议更新 * todo 的新发布路线,在架构和路线中也将 todo 更改为 'Todo' *
app.post('/todo', function(req, res){
var todo = new Todo({name : req.body["Todo.name"]});
todo.save(function (err) {
if (!err) {
res.redirect('/home');
}
else {
res.redirect('/fail');
}
});
});