在angularjs中,我如何迭代工厂的注入对象。
angular.module('SomeModule', ['AnotherModule'])
.factory('SomeFactory', [
'Value1',
'Value2',
'Value3',
'Value4',
function(){
// how to loop through the injected values, Value1, Value2, Value3 etc..
return {
};
}
]);
答案 0 :(得分:0)
我是JavaScript,函数的参数存储在arguments
类似数组的变量中:
for (var i = 0; i < arguments.length; i++) {
console.log(arguments[i]);
}