app.del('/:id',function(req,res){
User.findById(req.params.id,function(err,doc){
if(!doc){
return next(new NotFound('document is not found'))
}
doc.remove(function(){
res.redirect('/listuser');
});
})
});
<% for(var i=0; i<doc.length; i++) { %>
<li>
<%= doc[i].id %>
<%= doc[i].username %>
<%= doc[i].password %>
<form method='post' ,action='/<%= doc[i].id %>'>
<input type="submit" value="del" />
</form>
</li>
<% } %>
Cannot POST /listuser ejs 为啥啊? app.post也不行。。。