错误 405(此 URL 不支持 HTTP 方法 GET)

发布于 2025-01-07 02:36:37 字数 464 浏览 0 评论 0原文

我面临这个问题 405(此 URL 不支持 HTTP 方法 GET)

而该方法已发布在我的代码中

$.ajax({
            url: myUrl + "?" + "token=" + AccessToken + "&key=" +dev_key,
            jsonp: 'callback',
            dataType: 'jsonp',
            type: 'post',
            data: sendXML,
            success: function (result) {
                alert("hjgh");
            }
        });

function callback(json)
    {
      alert("ghj");
    }

I am facing this issue
405 (HTTP method GET is not supported by this URL)

whereas the method is post in my code

$.ajax({
            url: myUrl + "?" + "token=" + AccessToken + "&key=" +dev_key,
            jsonp: 'callback',
            dataType: 'jsonp',
            type: 'post',
            data: sendXML,
            success: function (result) {
                alert("hjgh");
            }
        });

function callback(json)
    {
      alert("ghj");
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终陌 2025-01-14 02:36:37

您指定“jsonp”作为“dataType”。这将导致方法为“GET”,覆盖您的“类型”设置。

You specified 'jsonp' as your 'dataType'. That will cause the method to be 'GET', overriding your 'type' settings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文