“Express JS Params” Ответ

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
});
Ham-Solo

Express Get Params после?

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 '?
Batman

express Get Parameters

app.get('/path/:name', function(req, res) {
  res.send("tagId is set to " + req.params.name);
});
Batman

Express Param в URL

app.get('/p/:tagId', function(req, res) {
  res.send("tagId is set to " + req.params.tagId);
});

// GET /p/5
// tagId is set to 5
SirSundays

Node Express Params

// url = /something/2?color1=red&color2=blue&type=square

app.get('/something/:id', (req, res) => {
  	req.params.id  === 2 // true
    req.query.color1 === 'red'  // true
    req.query.color2 === 'blue' // true
    req.query.type === 'square' // true
})
miletoo

Ответы похожие на “Express JS Params”

Вопросы похожие на “Express JS Params”

Больше похожих ответов на “Express JS Params” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования