标准表单(Post with x-www-form-urlencoded)

最后更新于:2022-04-01 22:06:30

# 标准表单 Post with x-www-form-urlencoded see `public/post.html` ``` ``` in `routes/users.js` ``` router.post('/post', function(req, res) { // res.send('respond with a resource'); res.json(req.body); }); ``` 测试 ```shell $ npm test ``` 使用Postman测试 ![](img/post-common.png)
';