0ebedi
Kimlik Onayı Bekliyor
Banlı Kullanıcı
-
Üyelik
17.08.2018
-
Yaş/Cinsiyet
27 / E
-
Meslek
Öğrenci
-
Konum
İstanbul Anadolu
-
Ad Soyad
E** E**
-
Mesajlar
188
-
Beğeniler
49 / 44
-
Ticaret
0, (%0)
Ajax Json Sunucuda Çalışıyor Localhost da çalışmıyor sebebi ne olabilir ?
Kodlar
index.php
.
.
.
$.ajax({
url:"ajax.php",
type:"post",
data :giris,
success: function(cevap){
var veri = JSON.parse(cevap)
$(".giris_uyari").html(veri.bos)
}
})
ajax.php
.
.
.
.
if(empty($kadi) || empty($sifre)){
$data["bos"]='Lütfen Boş Alan Bırakmayınız...';
}
echo json_encode($data);
-
Üyelik
19.04.2015
-
Yaş/Cinsiyet
26 / E
-
Meslek
Developer
-
Konum
İstanbul Avrupa
-
Ad Soyad
E** E**
-
Mesajlar
820
-
Beğeniler
1 / 302
-
Ticaret
1, (%100)
Şöyle dene bakalım, eğer console'da bir mesaj yoksa JS ile alakalıdır ama varsa PHP tarafına baştan aşağı bir bakman gerek.
/**
* Ajax XHR error printer
*/
function printError(jqXHR, textStatus, errorThrown) {
console.log('------------- ERROR Start ------------:');
console.log('-------------jqXHR------------:');
console.log(jqXHR);
console.log('----------textStatus----------:');
console.log(textStatus);
console.log('----------errorThrown----------:');
console.log(errorThrown);
console.log('------------- ERROR End --------------:');
}
$.ajax({
url: url,
type: 'POST',
timeOut: 30000,
data: data,
dataType: 'json',
async: true,
beforeSend: function (request) {
},
success: function (response) {
},
error: function (jqXHR, textStatus, errorThrown) {
printError(jqXHR, textStatus, errorThrown);
}
});
1 kişi bu mesajı beğendi.
no time for caution