$.ajax({
//check all selections are made
type: "POST",
url: "checkin_process.php",
dataType: "json",
data: dataString,
sucsess: function(){
// alert(data.success);
alert("sucess");
$("#message").fadeOut(5000);
},
statusCode: {
406: function() {
alert("sucess");
},
409: function() {
alert("err");
}
}
});
このコードのように、ajax リクエストは成功ではなくエラーのみを返します。
しかし、json
ファイルではjsonでエンコードされたデータを適切に返します。何が問題なのですか?