Guest User

Untitled

a guest
Feb 12th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. app.get('/test',function(req,res) {
  2. res.render('test',{});
  3. });
  4. app.post('/comment',function(req,res) {
  5. console.log(req.body);
  6. res.redirect('back');
  7. });
  8.  
  9. -------------------- test.jade ------------------------
  10. !!!
  11. html
  12. head
  13. title test
  14. body
  15. form(method='post',action='/comment')
  16. input(type='text',name='postername')
  17. input(type='text',name='postercomment')
  18. input(type='submit',value='submit')
Advertisement
Add Comment
Please, Sign In to add comment