📜  Express.js res.type()函数(1)

📅  最后修改于: 2023-12-03 14:41:04.991000             🧑  作者: Mango

Express.js res.type()函数

res.type() 是一个Express.js应用程序对象上的函数,它用于设置response的content type。 在HTTP响应头中的Content-Type header,它告诉客户端所接收到的数据的类型。

语法
res.type(type)

type 可以是content type的MIME类型(例如:'text/html')。函数可以在response对象上链式使用。

示例
const express = require('express');
const app = express();

app.get('/', function(req, res) {
  res.type('application/json');
  res.send('{name: "John Doe", age: 30}');
});

app.listen(3000, function() {
  console.log('server running on port 3000')
})

上述代码示例中,当客户端访问 / 时,服务器会返回一段JSON数据,该数据以application/json类型作为响应头的content type。

参考