Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実際、私は初心者です。Web アプリケーションで Express を使用したいので、アプリケーションのすべての要求と応答をサポートする必要があります。
application/json、application/x-www-form-urlencoded、および multipart/form-data
expressはかなり賢く、ヘッダータイプを自動的に判別します。また、res.send(JSONObj)を使用してオブジェクトをJSONとして直接送信することもできます。ヘッダーを手動で設定する場合はres.setHeader('Content-Type', 'application/json')、データを送信する前にを使用して設定できます。
res.setHeader('Content-Type', 'application/json')