Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

node.js parameters

app.get('/index/profile/:id', function (req, res) {
  res.end('profile with id' + req.params.id)
});
 
PREVIOUS NEXT
Tagged: #parameters
ADD COMMENT
Topic
Name
1+9 =