0
Hallo allerseits Ich versuche, diese AnfrageWarnung XMLHttpRequest ejecute Ajax
var post_url = "https://www.googleapis.com/books/v1/volumes?q=isbn:0716604892";
var text_area = $('#isbn_textarea').val().trim();
$.ajax({
dataType: 'json',
url: post_url,
type: 'GET',
success: function(response) {
var out = "";
alert(response);
},
error: function(response) {
alert('mal');
}
})
auszuführen Aber ich erhalten diese Warnung
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
irgendeine Idee? Vielen Dank im Voraus!
Haben Sie versucht, einen Rückruf an Ihre URL hinzufügen? '... & Rückruf =?' – ethane