書き方自体はgetと大して変わらないみたいですね。
リクエストオブジェクトreqのbodyで取得できます。
app.post('/test', function(req, res) {
res.send(req.body);
});
使う側はhttp://SERVER:PORT/testにPOSTアクセスします。
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
書き方自体はgetと大して変わらないみたいですね。
リクエストオブジェクトreqのbodyで取得できます。
app.post('/test', function(req, res) {
res.send(req.body);
});
使う側はhttp://SERVER:PORT/testにPOSTアクセスします。
Register as a new user and use Qiita more conveniently
Go to list of users who liked