我想通过Post使用FireFox向封闭的服务器发送消息。但是当我在开发工具中检查Post请求时,我无法在FireFox中找到失败发布请求的表单数据。内容长度为18,但参数为空。但是当我使用Chrome时,我可以看到the fail post request in Chrome的表单数据。有什么不同吗?当我打开服务器时,成功的post request in firefox确实将表单数据作为参数。
这是我的代码:
$.ajax({
type: 'POST',
url: '/manage-login',
data: data,
dataType: 'json',
sucess:function()
}