JSONデータを取得するためにAJAXを使用しています。ユーザーがいくつかのアドレスをフォームに入力すると、これらのアドレスは AJAX を使用して投稿されます。応答は"status": "fail"
、"status": "unknown"
または"status": "success"
+ ステータスに基づいて他の多くのものになります。各ステータスにより、残りの応答とともに新しいページが読み込まれます。
私の問題は、新しいページにデータを取得することです。
$.ajax({
url:"https://domain.local/",
type:"POST",
crossDomain: true,
dataType: "json",
data : data,
headers: {
'Content-Type': "application/json; charset=utf-8"
},
success: function(data) {
if (data.result.Status == " fail ") {
// head to fail.php and show response
}
else if (data.result.Status == " unknown ") {
// head to unknown.php and show response
}
else if (data.result.Status == " success ") {
// head to succes.php and show response
}
}
});
誰もそれを行う方法を知っていますか?