为什么 IE 中的 jQuery Ajax 请求返回 null?

发布于 2024-12-10 22:18:50 字数 788 浏览 0 评论 0原文

这就是我的请求现在的样子。如果我直接访问服务器网址,它就可以工作。它正在返回所需的数据。在 Chrome 和 Firefox 中工作完美。在 IE 中则不然。请求成功但返回的json为null。它在 Firefox 3.0 中的作用与 IE 中的作用相同。

$.ajax({
                        type: "POST",
                        url: "http://www.tpltm.ro/dbm/index.php?r=routes/get&type=4e60922f2eb58",
                        cache: false,
                        contentType: "application/json; charset=utf-8",
                        dataType : "json",
                        success: function(msg) {
                          console.log(msg);
                               createMenu(msg);
                        },
                        error: function() {
                               console.log("Error: ajaxRequest");
                        }
                 });

This is how my request is looking right now. If i acces directly the server url it works. It's returning the needed data. In Chrome and Firefox works flawless. In IE it doesn't. The request is successful but the returned json is null. It does the same thing in Firefox 3.0 as in IE.

$.ajax({
                        type: "POST",
                        url: "http://www.tpltm.ro/dbm/index.php?r=routes/get&type=4e60922f2eb58",
                        cache: false,
                        contentType: "application/json; charset=utf-8",
                        dataType : "json",
                        success: function(msg) {
                          console.log(msg);
                               createMenu(msg);
                        },
                        error: function() {
                               console.log("Error: ajaxRequest");
                        }
                 });

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

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

发布评论

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

评论(1

最美不过初阳 2024-12-17 22:18:50

您确定问题不仅仅是“console.log(msg);”吗这会导致 IE 在执行“createMenu”函数之前无提示地失败?

Are you sure the problem isn't simply the 'console.log(msg);' which would cause IE to silently fails before executing the 'createMenu' function ?

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