javascript - How to monitor the data I am sending and getting from the browser with each request to the server? -
I am using Chrome as a browser, and I'm not sure my client will send some data to the server Whether or not it has been How to check or make sure that the data (name value pair) is sending the customer and also with each request. Can you recommend a device to do this or can I do it in Chrome Dev Tools in Chrome.
You can do this on Dev Tool in the Network tab ( F12 < / kbd>) If you do not see any records added to the list - make sure you are recording a network log (clicking on the left dot, it is red): Then when you find the record you were looking for - click on the row, and you can see the relevant link Under "Header" you can enter the And ynder "feedback" will get you the response content from the server If you want the tool that works independently from the browser, you should look for "sniffer" - which I like Say it is free form data under the 'Request parameter (
GET parameter under the
query string parameter and
POST Code>) . >
Comments
Post a Comment