自定义返回页面
使用
ajax
实现自定义返回跳转页面,表单参数增加一个ajax=1
,实现返回json数据
使用前需要引入jquery
//以下参数需获取表单填写内容,再提交
var title="";
var user='';
var body='';
var vercode='';
$.post('/message/index',{title:title,user:user,body:body,vercode:vercode,ajax:1},function(res){
if(res.code==0){
alert('提交成功!');
window.location.href="指定跳转链接";
}else{
alert(res.msg);//弹出错误提示
}
},'json')
温馨提示: ajax=1是必不可少的。
返回数据
{
'code':错误码,默认0正确返回,1有错误信息
'msg':错误信息提示,如果code=1,则返回 success (小写)
'data':如果有数据,则返回json数组,但这个数据不一定每次成功返回都存在,根据情况
'url':返回的下一步操作的访问链接,不一定存在
}