Answers for "retrieve get params in express"

18

express get params after ?

GET /something?color1=red&color2=blue

app.get('/something', (req, res) => {
    req.query.color1 === 'red'  // true
    req.query.color2 === 'blue' // true
})

req.params refers to items with a ':' in the URL and req.query refers to items associated with the '?
Posted by: Guest on July-03-2020
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