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')