在工厂中循环注入的对象

时间:2015-03-28 08:58:42

标签: angularjs

在angularjs中,我如何迭代工厂的注入对象。

angular.module('SomeModule', ['AnotherModule'])

.factory('SomeFactory', [
    'Value1', 
    'Value2', 
    'Value3', 
    'Value4', 
    function(){

        // how to loop through the injected values, Value1, Value2, Value3 etc..
        return {


        };
    }
]);

1 个答案:

答案 0 :(得分:0)

我是JavaScript,函数的参数存储在arguments类似数组的变量中:

for (var i = 0; i < arguments.length; i++) {
    console.log(arguments[i]);
}