美文网首页
关于nodejs中res.send和res.end如何理解

关于nodejs中res.send和res.end如何理解

作者: 萤火虫de梦 | 来源:发表于2017-04-18 10:12 被阅读1756次

    很多时候,大家都再说res.end 必须要在res.send后加上,不然客户端会一直等待回应?

    但是我们在写代码的时候,很多时候直接,res.send();并没有加end,也没事.这是为什么?

    以下是官方文档说明:

    res.end([data] [, encoding])

    Ends the response process. This method actually comes from Node core, specifically the response.end() method of http.ServerResponse.

    Use to quickly end the response without any data. If you need to respond with data, instead use methods such as res.send() and res.json().

    说明里也并没有强调一定要写一个res.end。

    其实:

    简单说就是如果服务端没有数据传回客户端就可以直接用red.end返回,如果有数据可以使用res.send,red.json此时可以不写res.end了,因为在前面两个方法中默认会返回。

    相关文章

      网友评论

          本文标题:关于nodejs中res.send和res.end如何理解

          本文链接:https://www.haomeiwen.com/subject/tglfzttx.html