-1
接下來的一些教程會提供一個代碼,其中使用了req.body。它是一箇中間件(body-Parser)?可以查看我使用req.body的註釋。爲什麼我們在創建任何模型時使用req.body?
Review.create({
title : req.body.title, //here it is used!!
description : req.body.description,
rating: req.body.rating,
done : false
}, function(err, review) {
if (err)
res.send(err);
如果它是第三方中間件,那它在代碼中的功能如何?
https://nodejs.org/en/docs/guides/anatomy-of-an-http-transaction/,https://expressjs.com/en/api.html#req.body – tomtom
這就是爲什麼我們有代碼的文檔。 :) – Qix
@tomtom你的鏈接幫助很多謝謝多 – Aditya