You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/pages/api/loadingPizzaInformation_202...

16 lines
825 B

// Загрузка списка пиццы
const pool = require("../../server/db/connect");
const queryString = "SELECT type_pizza.id, type_pizza.title as name, type_pizza.heft_trad, type_pizza.type, type_pizza.heft_thin, type_pizza.price, type_pizza.img_thin, type_pizza.img_trad, type_pizza.size, products.title, products.description FROM type_pizza, products WHERE products.id=type_pizza.id_products and products.id=?";
export default function handler(req, res) {
const data = req.body;
pool.getConnection(function(err, conn) {
// Do something with the connection
conn.query(queryString, [data.id], function(err, rows, fields) {
res.status(200).json(rows);
});
// Don't forget to release the connection when finished!
pool.releaseConnection(conn);
})
}