jquery .getJSON 未从 CodeIgniter REST 接口获取任何数据

发布于 2024-11-19 06:14:05 字数 1082 浏览 1 评论 0原文

我正在使用 Phil Sturgeon 的 CodeIgniter RESTful 接口 https://github.com/philsturgeon/codeigniter-restserver 并且它似乎工作完美。

在另一台服务器上,我尝试使用 jQuery 检索 json 数据。

首先,我使用 jQuery 文档中的 flickr 示例检查了我的 js 是否混乱。这工作正常。

但是当我替换我的网址时,我似乎没有得到任何响应。

         $.getJSON("http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/?jsoncallback=?",
          function(data) {
            console.log ('show me the data');
          });

我还尝试了等效的ajax请求:

$.ajax({
  url: "http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/",
  dataType: 'jsonp',
  success: function(results){
  console.log(results);
  }
});

外部服务器上的访问日志显示对 /apps/api/micronews/community/db/mydb/city/mycity/format/json/?callback=jQuery151029825189273083685_1310236439746&_= 的 GET 请求1310236439748 和 200 回复。

直接从浏览器点击该页面会返回 json 编码数据。

由于 GET 参数位于 URL 字符串中,因此 CodeIgniter 配置不正确应该不会出现问题。访问日志似乎表明 GET 请求没问题。

I'm using Phil Sturgeon's RESTful interface for CodeIgniter https://github.com/philsturgeon/codeigniter-restserver and it appears to be working flawlessly.

On another server, I'm attempting to use jQuery to retrieve json data.

First I checked whether my js is messed up by using the flickr example in the jQuery documentation. That worked properly.

But when I substitute my url I don't appear to be getting any response.

         $.getJSON("http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/?jsoncallback=?",
          function(data) {
            console.log ('show me the data');
          });

I've also tried the equivalent ajax request:

$.ajax({
  url: "http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/",
  dataType: 'jsonp',
  success: function(results){
  console.log(results);
  }
});

The access log on the external server shows the GET request to /apps/api/micronews/community/db/mydb/city/mycity/format/json/?callback=jQuery151029825189273083685_1310236439746&_=1310236439748 and a 200 response.

Hitting that page directly from the browser returns json encoded data.

Since the GET parameters are in the URL string, it shouldn't be an issue with CodeIgniter not configured properly. And the access log seems to suggest the GET request is fine.

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

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

发布评论

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

评论(4

冰魂雪魄 2024-11-26 06:14:05

该解决方案对我有用:
application/config/config.php 中进行以下更改:

$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE

拯救我的夜晚!

The solution work for me :
In the application/config/config.php make these changes :

$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE

Save my night !

始终不够爱げ你 2024-11-26 06:14:05

我想这就是安全过滤功能起作用的原因。

当调用新的控制器时,安全过滤函数会自动调用。它执行以下操作:

<块引用>

如果 $config['allow_get_array'] 为 FALSE(默认为 TRUE),则销毁全局 GET 数组。

http://codeigniter.com/user_guide/libraries/input.html

所以,尝试< code>$config['allow_get_array'] = TRUE 或使用 Post 方法。

I guess that is why security filtering function worked.

The security filtering function is called automatically when a new controller is invoked. It does the following:

If $config['allow_get_array'] is FALSE(default is TRUE), destroys the global GET array.

http://codeigniter.com/user_guide/libraries/input.html

So, try $config['allow_get_array'] = TRUE or use Post method.

泅渡 2024-11-26 06:14:05

尝试使用这个:

 $.getJSON("http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/?callback=?",
  function(data) {
    console.log ('ready to handle data');
  });

Try using this:

 $.getJSON("http://myurl/apps/api/micronews/community/db/mydb/city/mycity/format/json/?callback=?",
  function(data) {
    console.log ('ready to handle data');
  });
酸甜透明夹心 2024-11-26 06:14:05

为什么不直接使用 $.ajax() ,然后传入 crossDomain:true 而不用担心 jsonp 回调包装器?

Why not just use $.ajax() and then you can pass in crossDomain:true instead of worrying about jsonp callback wrappers?

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