Insert Data Product

Dibawah fungsi get product by id isi dengan script berikut:

// folder-project/routes/product.js

router.post('/product/', upload.single('image'), (req, res) => {
  Product.create({
    name: req.body.name,
    price: req.body.price,
    image: req.file === undefined ? "" : req.file.filename
  }).then(products => {
    res.json({
      "status": "success",
      "message": "Product added",
      "data": products
    })
  })
});

results matching ""

    No results matching ""