“Rute Express Nesting” Kode Jawaban

Rute Express Nesting

var router = require('express').Router();

// api/products
router.get('/', function(req, res) {
  res.json({ products: [] });
});

// api/products/:id
router.get('/:id', function(req, res) {
  res.json({ id: req.params.id });
});

module.exports = router;
Unusual Unicorn

Rute Express Nesting

var router = require('express').Router();

// split up route handling
router.use('/products', require('./products'));
router.use('/categories', require('./categories'));
// etc.

module.exports = router;
Unusual Unicorn

Jawaban yang mirip dengan “Rute Express Nesting”

Pertanyaan yang mirip dengan “Rute Express Nesting”

Lebih banyak jawaban terkait untuk “Rute Express Nesting” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya