我正在使用 AJAX 来获取 JSON 数据。用户填写带有一些地址的表单,这些地址使用 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
}
}
});
有谁知道这是怎么做到的吗?