我正在使用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