正如您从标题中看到的,我想要一个警告弹出窗口显示“信用卡号码无效。”
我目前正在使用alert(data.responseText);但显示“信用卡号码与订阅相关联时无法更新为不支持的卡类型。
此商家帐户不接受信用卡类型。
信用卡号无效。
{“success”:“false”,“message”:“信用卡号无效。”}“
有没有办法只显示“信用卡号无效”部分。
如果我使用alert(data.Message));给出“未定义”和警报(数据);给出“[object Object]”。
感谢您的帮助。
var data = {
"action": "checkout"
};
data = $('#checkout_form').serialize() + "&" + $.param(data);
$.ajax({
type: "POST",
dataType: "json",
url: "inc/placeorder.php", //Relative or absolute path to response.php file
data: data,
success: function(data) {
if(data["success"] == 'true'){
$("#placeorder").attr("disabled",false);
$(".payment_loader").fadeOut("slow").hide();
$('#checkout_form').trigger("reset");
window.location = "order_success.php";
}
if(data["success"] == 'false'){
$("#placeorder").attr("disabled",true);
$(".payment_loader").fadeOut("slow").hide();
$('#subscribe_response').html(data['message']);
alert(data.responseText);
}
},
error: function(data, status){
alert(data);
console.log("error", data.responseText);
console.log("error", status.responseText);
}
});
}else{
return false;
}
});
修改
这是抛出的错误。
} else {
foreach ($result->errors->deepAll() as $error) {
$errorFound = $error->message . "<br />";
echo $errorFound;
}
$response = array("success" => "false", "message" => $errorFound);
return $response;
exit;
}
答案 0 :(得分:0)
实际上你设置了响应类型&#34; json&#34;在你的ajax请求中,但是你没有得到响应&#34; json&#34;。在你的PHP脚本中使用json_encode函数为json响应返回
return json_encode(response);
然后提醒
alert(data.message);