this questionなどの症状に似た症状がありますが、回答が役に立たなかったです。私は単純なHTMLフォームを介してノードアプリケーションにパスワードを送信しようとしていますが、リクエスト本体は空のまま戻ってきます。HTMLフォームを使用してPOSTリクエストを行うときにリクエスト本文が空です
サーバー:
app.use(bodyParser.urlencoded({extended: true}));
router.post('/login', (req, res) => {
console.log(req.body);
console.log(req.headers['content-type']);
});
フォーム:
<form action="/login" method="post">
<input type="password" id="password">
<button type="submit">Log In</button>
</form>
私はフォームを送信した場合、私は次を得る:
{} // req.body
'application/x-www-form-urlencoded' // req.headers['content-type']
しかし、私はエンドポイントをカールしようとすると、私は空ではないreq.body
:
$ curl -X POST localhost:5000/login -d 'password=testpw'
// Output
{ password: 'testpw' }
'application/x-www-form-urlencoded'
私は間違っていますか?
どのバージョンであるべき持っていないのですか? – Alex
Expressバージョン4 – ericgio