gpt4 book ai didi

php - 制作 JQuery POst 时出现 Not Acceptable 错误

转载 作者:行者123 更新时间:2023-11-30 00:53:13 27 4
gpt4 key购买 nike

我有一个脚本进行 ajax 调用,如下所述。

$.ajax({

url: 'internal/something.php',
type: 'POST',
data: { TabsObj: JSON.stringify(Tabs) },
dataType: "text",
accept : {text: "text/plain"},
success: function(data,status,he)
{
alert(data);
window.onbeforeunload = null;
window.location = "somewhere.php";
}}).fail(
function(msg)
{
alert(msg.responseText+" Error In Connection, Try Again...");
window.onbeforeunload = null;
window.location = "confirmTest.php";
});

但是每次发出此请求时,我总是收到此错误消息

406 Not Acceptable

在此服务器上找不到所请求资源 /internal/timeUp.php 的适当表示。

此外,尝试使用 ErrorDocument 处理请求时遇到 404 Not Found\nerror

对此的任何帮助将不胜感激。

最佳答案

请验证客户端:

检查您的请求 header :

dataType: 'json',

接受/接受:application/json、text/javascript、/; q=0.01 这将明确告诉服务器端您需要 JSON。

还有...检查一下:http://www.checkupdown.com/status/E406.html

礼貌:Why is my jquery ajax giving a 406

关于php - 制作 JQuery POst 时出现 Not Acceptable 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20798113/

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