...
| Bloco de código | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
fooModule.provider( 'fooProvider', function() {
var barName = '';
this.foo = function() {
console.log('This is foo serviceprovider printing ' + barName + ' :)');
};
this.$get = function () {
return this;
};
});
fooModule.controller('fooController', ['foo', function( fooProvider ) {
fooProvider.foo();
}]); |
...