Home > OS >  How can I format the json in my network tab in chrome?
How can I format the json in my network tab in chrome?

Time:09-30

I am sending http request to my backend and when the data is returned from backend I get this json in my response network tab but it is unreadable. Here is the screenshot of it.enter image description here

I am using chrome. I would like to have it formatted like a javascript object which I can read.

CodePudding user response:

Simply click on the "preview" tab!

In the response tab you will see the plain text of what the server sent to you.

In the preview, you will able to see the "answer" of your request, but graphically readable! And this works with HTML, CSS and JSON too.

Andrea

  • Related