gpt4 book ai didi

javascript - 在浏览器中,Chrome 方法 POST 与 GET 类似

转载 作者:行者123 更新时间:2023-12-03 12:43:30 26 4
gpt4 key购买 nike

在所有浏览器中都可以,但在 Chrome 中,POST 方法与 GET 类似

   $(function() { 
$('#login').submit(function(e) {
e.preventDefault();
if ($(this).parsley('validate')) {
$.ajax ({
type: "POST",
url: "user/login.php",
data: $(this).serialize(),
dataType: "json",
error: function(jqXHR, textStatus, errorThrown) {
location.href="pages-500.php";
},
success: function(data) {
if (data.status === 'OK') {
location.href= '';
}
else {
$('#error').html(data.message);
}
}
}); } });
});

结果:

请求方式:GET状态码:200 OK

为什么?在首页网站的另一部分,ajax 在 chrome 中工作正常(发送邮件、联系...等)

最佳答案

问题

    $(function() { 
});

chrome 在这个 noname 函数中看不到 ajax他去表格询问。表单操作为空(处理程序)无处发送查询表单中的方法也是空的,浏览器通过 GET 发送

问题已解决

关于javascript - 在浏览器中,Chrome 方法 POST 与 GET 类似,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23433530/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com