jquery .getJSON 未从 CodeIgniter REST 接口获取任何数据
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
该解决方案对我有用:
在
application/config/config.php
中进行以下更改:拯救我的夜晚!
The solution work for me :
In the
application/config/config.php
make these changes :Save my night !
我想这就是安全过滤功能起作用的原因。
http://codeigniter.com/user_guide/libraries/input.html
所以,尝试< code>$config['allow_get_array'] = TRUE 或使用 Post 方法。
I guess that is why security filtering function worked.
http://codeigniter.com/user_guide/libraries/input.html
So, try
$config['allow_get_array'] = TRUE
or use Post method.尝试使用这个:
Try using this:
为什么不直接使用 $.ajax() ,然后传入 crossDomain:true 而不用担心 jsonp 回调包装器?
Why not just use
$.ajax()
and then you can pass incrossDomain:true
instead of worrying about jsonp callback wrappers?