POST
相比 GET 更安全,拥有更大的数据容量
POST使用
app.use(express.json()) // 允许express解析提交的json数据
...
app.post('/products', async function (req, res) => {
const data = req.body; // 客户端传递的数据
const product = await Product.create(data) //用Model.create(data)向数据库写入数据
res.send(product );
});
测试接口
vs code 下载插件 REST Client
新建 text.http
@uri=http://localhost:3000/
###
GET {{ uri }}products
###
POST {{ uri }}products
Content-type: application.json
{
"title": "产品4"
}
网友评论