node.jsとexpressフレームワークの基礎を学んでいます。2 つのボタンがあるシンプルなページがあります。
<form action="/home2" method="post">
<button name="butt1">butt1</button>
<button name="butt2">butt2</button>
</form>
そして、どのボタンが押されたかをコンソールで確認したい:
router.post('/', function(req, res, next) {
console.log(req.body.name);
res.render('home2', { title: 'post' });
});
コンソールで私はちょうど見る
undefined
ボタンの名前にアクセスするにはどうすればよいですか?