如何使用Postman和x-www-form-urlencoded Body测试POST方法?

时间:2019-06-05 02:12:39

标签: post pug postman webstorm

我正在使用Pug制作我的第一个JS Web App的最后一步,我需要测试它是否支持POST方法,该方法接受一个字符串应该返回一个带有2个key.value对的JSON对象,它们代表原始字符串及其长度。

我被指示使用Postman和x-www-form-urlencoded来测试我的App,但是我不知道如何使用urlencoded正文来测试POST方法。

有人可以告诉我我应该在x-www-form-urlencoded下填写Postman上的KEY和VALUE吗?

//POST method in route file
router.post('/', (req, res, next) => {
    res.render('ps3post', {string: req.body.string, stringLength: req.body.string.length});
});
block content
    h1 POST method, page rendered by PUG
    p= string
    p= stringLength

My Postman Error Message Screenshot

1 个答案:

答案 0 :(得分:0)

好吧,我知道了。似乎KEY必须是类型(在我的示例中为string),而VALUE必须是我想要的实际值

Postman Screenshot