Answers for "how to get param in express js"

28

express js params

app.get('/path/:name', function(req, res) { // url: /path/test
  console.log(req.params.name);  // result: test
});

// OR

app.get('/path', function(req, res) {  // url: /path?name='test'
  console.log(req.query['name']);  // result: test
});
Posted by: Guest on January-29-2021
3

get url params in express

app.get("/users/:id",(req,res)=>{ // https://domain.com/users/817178
  const id = req.params.id ; //  817178
})
app.get("/users?name=anas",(req,res)=> { // https://domain.com/users?name=anas
const name  = req.query.name ; //anas
})
Posted by: Guest on April-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language