web-dev-qa-db-ja.com

AngularJS:ファクトリから、別の関数を呼び出すにはどうすればよいですか?

GetTemplates関数をリターンから移動する必要がありますか?

例:「XXXXXXX」を何に置き換えるかわかりません(「this/self/templateFactory」などを試しました...):

.factory('templateFactory', [
    '$http',
    function($http) {

        var templates = [];

        return {
            getTemplates : function () {
                $http
                    .get('../api/index.php/path/templates.json')
                    .success ( function (data) {
                        templates = data;
                    });
                return templates;
            },
            delete : function (id) {
                $http.delete('../api/index.php/path/templates/' + id + '.json')
                .success(function() {
                    templates = XXXXXXX.getTemplates();
                });
            }
        };
    }
])
15
Purplefish32

templates = this.getTemplates();を実行すると、まだインスタンス化されていないオブジェクトプロパティを参照していることになります。

代わりに、オブジェクトに徐々にデータを入力できます。

.factory('templateFactory', ['$http', function($http) {
    var templates = [];
    var obj = {};
    obj.getTemplates = function(){
        $http.get('../api/index.php/path/templates.json')
            .success ( function (data) {
                templates = data;
            });
        return templates;
    }
    obj.delete = function (id) {
        $http.delete('../api/index.php/path/templates/' + id + '.json')
            .success(function() {
                templates = obj.getTemplates();
            });
    }
    return obj;       
}]);
37
AlwaysALearner

これはどう?

.factory('templateFactory', [
    '$http',
    function($http) {

        var templates = [];

        var some_object =  {

            getTemplates: function() {
                $http
                    .get('../api/index.php/path/templates.json')
                    .success(function(data) {
                        templates = data;
                    });
                return templates;
            },

            delete: function(id) {
                $http.delete('../api/index.php/path/templates/' + id + '.json')
                    .success(function() {
                        templates = some_object.getTemplates();
                    });
            }

        };
        return some_object  

    }
])
6
HIRA THAKUR