我想在 angularjs 服务中编写一个函数,并且我想在我的所有服务中重用它
控制器。
var mod= angular.module('myapp', ['eventFilters', 'highlight', 'event', 'dayfilter', 'Services']).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/', {templateUrl: 'template.html', controller: Ctrl}).
when('/temp', {templateUrl: 'temp.html', controller: tempCtrl}).
otherwise({redirectTo: '/invalid'});
}]);
mod.service ('sharedService', function() {
function daysInMonth(month,year) {
return new Date(year, month+1,0).getDate();
}
});
我想在我的任何控制器中使用 daysInMonth 函数。可能吗?如果是这样,任何人都可以用小提琴中的一些例子简要解释一下我。
提前致谢