Drop request in node.js express

前端 未结 3 2117
南旧
南旧 2021-02-14 23:06

Is it possible using Node.js and express to drop a request for certain route? I.E. not return a http status or any headers? I\'d like to just close the connection.



        
相关标签:
3条回答
  • 2021-02-14 23:33

    You could do this wherever you want to close the connection: res.end()

    0 讨论(0)
  • 2021-02-14 23:45

    To close a connection without returning anything, you can either end() or destroy() the underlying socket.

    app.get('/drop', function(req, res) {
      req.socket.end();
    });    
    

    I don't think there's any way to drop the connection at your end but keep the client waiting until it times out (i.e. without sending a FIN). You'd perhaps have to interact with your firewall in some way.

    0 讨论(0)
  • 2021-02-14 23:53

    Yes you can. All you need to do is call the res.end method optionally passing in the status code.

    Use one of the following methods:

    res.end();
    res.status(404).end();
    

    If you wanted to also set the headers, then you'd use the res.set method. See below

    res.set('Content-Type', 'text/plain');
    
    res.set({
      'Content-Type': 'text/plain',
      'Content-Length': '123',
      'ETag': '12345'
    })
    

    For details have a look here http://expressjs.com/api.html

    0 讨论(0)
提交回复
热议问题