📅  最后修改于: 2022-03-11 15:02:27.035000             🧑  作者: Mango
//to get all the products
app.get("/products", async (req, res) => {
try {
const allProducts = await Product.find();
return res.json(allProducts);
} catch (error) {
res.json({ message: error });
}
});