Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display request path in Chrome DevTools network panel

I make the following call using jQuery:

$.ajax({
    url: "http://domain/..etc../calendars/",
// ...
});

which returns the results I need.

The issue I have is this call is represented like this in the developer tools:

enter image description here

The call is simply displayed as:

?_=1443327272355

This makes the call difficult to find in amongst all of the other calls without filtering and searching.

Is there a way I can display the call as at least:

/calendars/?_=1443327272355
like image 340
rhughes Avatar asked Sep 27 '15 04:09

rhughes


1 Answers

Your best option is to use large request rows. In order to see large request rows, click the "Network Settings" on the right of the Network panel, and select "Use large request rows".

enter image description here

like image 147
Michael P. Bazos Avatar answered Nov 07 '22 10:11

Michael P. Bazos