AnnaBell09071981 / crud

0 stars 0 forks source link

router product-list #2

Open Anna-Shy opened 11 months ago

Anna-Shy commented 11 months ago
router.get('/product-list', function (req, res) {
  // res.render генерує нам HTML сторінку
  const list = Product.getList()

  console.log(list)
  // ↙️ cюди вводимо назву файлу з сontainer
  res.render('product-list', {
    // вказуємо назву папки контейнера, в якій знаходяться наші стилі
    style: 'product-list',

    data: {
      products: {
        list,
        isEmpty: list.length === 0,
      },
    },
  })
  // ↑↑ сюди вводимо JSON дані
})
AnnaBell09071981 commented 11 months ago

Велике дякую!!!! Чт, 30 нояб. 2023 г. в 19:14, Anna-Shy @.***>:

router.get('/product-list', function (req, res) { // res.render генерує нам HTML сторінку const list = Product.getList()

console.log(list) // ↙️ cюди вводимо назву файлу з сontainer res.render('product-list', { // вказуємо назву папки контейнера, в якій знаходяться наші стилі style: 'product-list',

data: {
  products: {
    list,
    isEmpty: list.length === 0,
  },
},

}) // ↑↑ сюди вводимо JSON дані })

— Reply to this email directly, view it on GitHub https://github.com/AnnaBell09071981/crud/issues/2, or unsubscribe https://github.com/notifications/unsubscribe-auth/A6OBUO7R67HVMHXQL3PELY3YHC5HPAVCNFSM6AAAAABABRHPKWVHI2DSMVQWIX3LMV43ASLTON2WKOZSGAYTSMJSG4YDCMY . You are receiving this because you are subscribed to this thread.Message ID: @.***>