Data URL JSON tidak ditampilkan di konsol menggunakan jQuery

$.ajax({
  type: "POST",  // add type
  url: 'file.php',
  dataType: 'json', // change dataType to 'json' if its something else
  success: function(response) {
    console.log(response);
  }
});

I hope it will help you.
Namaste _/\_
Ankur