0%

[nodejs]request body の中身を全て表示

リクエストボディの中身を全て表示する

Azure Monitor のアラートのjsonペイロードを取得する時などに

1
2
3
4
router.post('/webtest', function (req, res) {
console.dir(JSON.stringify{req.body});
//その他処理
});