如何使用jquery getJson函数使用`localhost`加载json数据?

时间:2014-09-17 12:31:20

标签: jquery json

我的文件夹中有一个json文件。作为样本,它是这样的:

json文件:

{
  "name" : "testing"
}

在我的视图文件中我尝试这样:

jQuery(document).ready(function($) {

    var model = Backbone.Model.extend({});

    var view = Backbone.View.extend({
        model : model,
        initialize : function () {
            this.data = $.getJSON("OriginatingBanks.json", 
                function(data) {
                console.log(data); //data not at all loading.
            }).error(function(jqXhr, textStatus, error) {
                console.log("ERROR: " + textStatus + ", " + error);
            });
        }
    });

    var originatingBank = new view;

});

json文件与html文件一起作为兄弟。这里有什么不对的?任何人帮助我?

更新

当我尝试使用localhost打开时,我从本地服务器收到此错误:

Here is the screen shot

0 个答案:

没有答案