当前位置:  开发笔记 > 前端 > 正文

$ .ajax使用file而不是url?

如何解决《$.ajax使用file而不是url?》经验,为你挑选了1个好方法。

在$ .ajax函数中,url部分有data.json这是一个文本文件,但我想放一个url即

代码适用

$(document).ready(function() {

    $('#content').html('');
    $.ajax({
            url:'data.json',
            dataType: "json",
            success: function(data) {
                    $('#content').append('

'+data.rank+'

'); } });});

其中data.json是一个文本文件...但是我将'data.json'替换为' http://twittercounter.com/api/username=Anand_Dasgupta&output=json&results=3 '...这是实际的url,然后没有输出......

$(document).ready(function() {

    $('#content').html('');
    $.ajax({
          url:'http://twittercounter.com/api/username=Anand_Dasgupta&output=json&results=3',
            dataType: "json",
            success: function(data) {
                    $('#content').append('

'+data.rank+'

'); } });});

建议将受到高度赞赏.谢谢.



1> jrharshath..:

这似乎是跨域ajax预防的一个案例.

您需要使用服务器端代理脚本.

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有