Skip to content

Instantly share code, notes, and snippets.

@guidone
Created April 10, 2017 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guidone/bc186dabec808db68916116528fdf0c5 to your computer and use it in GitHub Desktop.
Save guidone/bc186dabec808db68916116528fdf0c5 to your computer and use it in GitHub Desktop.
Express Middleware 3
app.get('/mypage/ajax',
mw_1,
  function(req, res, next) {
  res.render('my_subtemplate', {
  query1: req.query1
  });
  }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment