How do I capture a “response end” event in node.js+express?

后端 未结 2 668
悲&欢浪女
悲&欢浪女 2021-02-11 14:12

I\'d like to write an express middleware function that sets up a listener on the response\'s \'end\' event, if one exists. The purpose is to do cleanup based on the http respon

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-11 14:54

    Reading the documentation, here is the signature of res.send:

    res.send(body|status[, headers|status[, status]])
    

    Which means you can set your own status, like this: res.send( 'some string', 200 ); or even just res.send( 404 );.

    This method is the one you use to send the response.

    Once it is sent to the client, you can't access it anymore, so there is no callback.

    This is the last thing your server does. Once it has processed the request, it sends the response.

    However, you can access it before you send it to the client. Which means you can:

    console.log( res );
    res.send( datas );
    

    If you want to rollback/commit, you do it when the database's callback is called, not when the response is gone.

提交回复
热议问题