1

私はこの非常にシンプルなサーバーを持っています:

var app = require('express')();
var bodyParser = require('body-parser');

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));

app.post('/update', (req, resp) => {
  debugger;
  resp.send();
});

var server = app.listen(3000, function () {
  var host = server.address().address;
  var port = server.address().port;
  console.log('Example app listening at http://%s:%s', host, port);
});

postmanを使用して、次のようにサーバーにデータを送信しています。

郵便屋さんのスクリーンショット

リクエストを受信すると、REPL は空の本文を表示します。

> req.body
{}

体は次のようになると思います。

{
  "hello": "world"
}

明らかな何かが欠けていますか?おそらく ..

4

1 に答える 1