我怎样才能获得远程JSON?

时间:2014-03-20 22:30:47

标签: javascript angularjs

我正在构建一个类固醇应用程序,它使用角度js。它从本地JSON文件中读取数据,而我试图获取远程JSON。我该怎么做呢?以下是我的" show.js"中包含的代码。文件。我试过改变

    RestangularConfigurer.setBaseUrl('http://localhost/data'); 

使用我的服务器JSON的URL,但这也不起作用。

    (function () {

    // Protects views where angular is not loaded from errors
    if (typeof angular == 'undefined') {
        return;
    };


    var module = angular.module('ShowModel', ['restangular']);

    module.factory('ShowRestangular', function (Restangular) {

        return Restangular.withConfig(function (RestangularConfigurer) {

            RestangularConfigurer.setBaseUrl('http://localhost/data');
            RestangularConfigurer.setRequestSuffix('.json');
            RestangularConfigurer.setRestangularFields({
                id: "show_id"
            });

        });

    });


})();

0 个答案:

没有答案