创建失败,原因为未知错误:
xhrFields:{withCredentials:true},
success:function(data){
if (data.status == "success") {
alert("创建成功");
}else{
alert("创建失败,原因为"+data.data.errMsg);
}
},
提交后跳到了else里,但是数据库里有数据
xhrFields:{withCredentials:true},
success:function(data){
if (data.status == "success") {
alert("创建成功");
}else{
alert("创建失败,原因为"+data.data.errMsg);
}
},
提交后跳到了else里,但是数据库里有数据
2020-07-27
举报