Backend Data Revice From Frontend
৩টি পদ্ধতিতে backend সাধারণত frontend থেকে ডাটা recive করে থাকে
body
query
params
Body এর মধ্যমে backend এ Data recive
app.post("/api/v1/user/create-booking", async (req, res) => {
const booking = req.body;
console.log(booking)
});
...
promahbubul.hashnode.dev1 min read