Google Chrome queued request one by one when multiple requests to a localhost node application

前端 未结 1 513
天命终不由人
天命终不由人 2021-01-15 17:23

Recently, I was testing the asynchronous behaviour of a nodejs express web application. My code was very simple

const express = require(\'express\');
const a         


        
1条回答
  •  臣服心动
    2021-01-15 17:42

    Yes, this is Chrome's behavior. Identical requests to the same host will stall. This is apparent if you watch the network tab in the developer tools.

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