为了账号安全,请及时绑定邮箱和手机立即绑定

firefox跟chrome的$.post()有什么区别吗?

firefox跟chrome的$.post()有什么区别吗?

慕侠2389804 2018-12-19 15:26:49
 $.post(url, JSON.stringify(send_data), function(data, ts){},'json'); window.location.href = "http://" + localStorage.ServerIP;点击退出按钮以后向后端发送send_data,然后跳转到ServerIP在chrome下后端可以收到send_data,但是Firefox下不能收到只有把post设为同步,Firefox才能收到send_data请问下有没有什么好的方法(除了设置同步),让前端发送完send_data以后再进行跳转?            $.ajax({                type:"post",                 url:url,                async:false,                 data:JSON.stringify(send_data),                 dataType:"json",                 success:function(data){                 }             });改用这种格式就能成功跳转+发送数据,这是为啥?
查看完整描述

1 回答

?
慕沐林林

TA贡献2016条经验 获得超9个赞

success:function(data){    window.location.href = "http://" + localStorage.ServerIP;
}


查看完整回答
反对 回复 2018-12-19
  • 1 回答
  • 0 关注
  • 734 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信