Answer the question
In order to leave comments, you need to log in
How to display http request in google chrome console?
An ajax request is sent to the controller action, and already with the action there is a request to the api. Is it possible to somehow track the request from the action in the browser console or not?
Answer the question
In order to leave comments, you need to log in
Via jQuery
$.ajax({
url: "script.php",
method: "POST",
}).done(function( msg ) {
console.log( msg );
}).fail(function( jqXHR, textStatus ) {
console.log( "Request failed: " + textStatus );
});
Here is the extension https://chrome.google.com/webstore/detail/php-cons...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question