认识 Express 的 res.send() 和 res.end()

行是知之始,知是行之成。这篇文章主要讲述认识 Express 的 res.send() 和 res.end()相关的知识,希望能为你提供帮助。

认识 Express 的 res.send() 和 res.end()

文章图片

前言在使用 Node.js 的服务端代码中,如果使用的是 Express 框架,那么对于一个请求,常常会有两种响应方式:
// 方法1 app.get("/end", (req, res, next) => res.end(xxx); ); // 方法2 app.get("/send", (req, res, next) => res.send(xxx); );

那么这两种方式究竟有何区别?各自的应用场景分别是什么?这是我今天需要讲清楚的。
Express 之 res.end() 定义
它可以在不需要任何数据的情况下快速结束响应。
这个方法实际上来自 Node 核心,具体来说是 http.ServerResponse.Useresponse.end() 方法:
认识 Express 的 res.send() 和 res.end()

文章图片

语法
res.end([data[, encoding]][, callback])

参数解析:
  • data \\< string\\> | \\< Buffer\\>
  • encoding \\< string\\>
  • callback \\< Function\\>
深入
如果给 res.end() 方法传入一个对象,会发生报错:
认识 Express 的 res.send() 和 res.end()

文章图片

Express 之 res.send() 定义
向请求客户端发送 HTTP 响应消息。
语法
res.send([body[,statusCode]])

body 参数可以是 Buffer、Object、String、Boolean 或 Array。
深入
通过代码调试,我们可以发现,Express 的 res.send() 方法最终调用的也是 http.ServerResponse.Useresponse.end() 方法:
// node_modules/express/lib/response.js res.send = function send(body) var chunk = body; var encoding; …… if (req.method === HEAD) // skip body for HEAD this.end(); else // respond this.end(chunk, encoding); return this; ;

对比 相同点
Express 的 res.end() 和 res.send() 方法的相同点:
  1. 二者最终都是回归到http.ServerResponse.Useresponse.end() 方法。
  2. 二者都会结束当前响应流程。
不同点
Express 的 res.end() 和 res.send() 方法的不同点:
  1. 前者只能发送 string 或者 Buffer 类型,后者可以发送任何类型数据。
  2. 从语义来看,前者更适合没有任何响应数据的场景,而后者更适合于存在响应数据的场景。
总结Express 的 res.end() 和 res.send() 方法使用上,一般建议使用 res.send()方法即可,这样就不需要关心响应数据的格式,因为 Express 内部对数据进行了处理。
~
~本文完,感谢阅读!
【认识 Express 的 res.send() 和 res.end()】~

    推荐阅读