2 回答
TA贡献1824条经验 获得超8个赞
试试这个成功功能 -
success:function(data){
var myJson = JSON.parse(data);
if(myJson.status == "success"){
alert('Message sucessfully sent ');
setTimeout(function(){location.reload();},5000);
}else if(myJson.warnings[0].code =="192"){
console.log(myJson.warnings[0].message);
}else{
alert("Try again");
}
}
TA贡献1878条经验 获得超4个赞
您好,您可以尝试在成功函数中编写它并在浏览器的控制台窗口中打印错误响应 -
$.ajax({
url: "<?php echo base_url(); ?>admin_controllers/CategoryController/bulkSms",
type: "post",
dataType:'json',
data: $('#getsms').serialize(),
success:function(data){
if(data.status=="success"){
alert('Message sucessfully sent ');
setTimeout(function(){location.reload();},5000);
}else if(data.errors[0].code=="192"){
console.log(data.errors[0].message);
}else{
alert("Try again");
}
});
- 2 回答
- 0 关注
- 103 浏览
添加回答
举报