I met a problem of http requests with redirect. Like this:
There is a button on page A, if you click the button, it triggers:
- Send multiple HTTP requests to the remote server to remember this click event
- Redirect to the page B
The problem is: The events N.1 above is not finished yet, but the page A is already redirected to page B.
I tried to test this behavior in Chrome, it shows status 200 for all the http requests of events N.1 above. But in Firefox, nope, I tried to use firebug to debug and selected the persist option to keep all the requests in the network, but there are not requests in the list.
So I have two supposes:
- Configuration of firefox is not right
- Thoses requests in Chrome are just "happened to" finish, good luck.
Please somebody can give me some tips or answers to figure it out ? Thank you