4

我有一个 JSONP URL,它正在提取数据并刚刚切换到本地 JSON 文件,现在我遇到了错误。我不明白为什么它不适用于本地 JSON 文件?

<script type="text/javascript">
    $.ajax({
        type : 'GET',
        dataType : 'json',
        url: '/json/topics.json',
        success : function(data) {
            console.log(data); 
            var topics = [];
            $.each(data.results, function(index, obj){
                topics.push({
                    username: obj.TopicName,
                    mentions: obj.LastHourCount,
                    totalcount: obj.TotalCount,
                    daycount: obj.Last24HoursCount
                }); 
            });
            $('#leader').tmpl(topics).appendTo('#top3');
        } 
    });
</script>

在控制台中它说 AJAX 出于某种原因是一个匿名函数?有什么建议么?

4

1 回答 1

3

$.ajax是异步的,看起来您正试图在页面加载时更改 DOM,添加

async: false,

到你的$.ajax参数。请注意,它可能会减慢页面加载速度。

例子:

 $.ajax({
    type : 'GET',
    dataType : 'json',
    async: false,
    // rest of your code

如果您使用的是本地文件,而不是通过网络服务器,请参阅此帖子并收到Origin null is not allowed by Access-Control-Allow-Origin错误:

错误:使用 JQuery 的 ajax 方法加载 XML 文件时,“Access-Control-Allow-Origin 不允许 Origin null”

于 2012-01-30T15:47:09.603 回答