I have this factory:
factory('getJson', ['$resource', function($resource) {
return $resource('json/greetings.json', {}, {
query: {method:'GET', isArray:true}
});
}]);
the file is hardcoded, 'greetings.json', and I want the factory to get files according to the checkboxes in my view:
<li><input type="checkbox" ng-model="includeVeggies" />Veggies</li>
<li><input type="checkbox" ng-model="includeGreetings" />Greetings</li>
Any idea how do I go about that?
You can return a function:
.factory('getJson', ['$resource', function($resource) {
return function (file) {
return $resource(file, {}, {
query: {method:'GET', isArray:true}
});
};
}]);
Then in your controller:
.controller('MyController', ['getJson', function (getJson) {
getJson('json/greetings.json');
});
Here's a Plnkr.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With