我想制作几个具有相同逻辑的控制器。只有不同的部分是注射。
我可以像这样创建控制器:
var controllerFunc = function($scope, service) {
$scope.service = service;
}
app.controller('Controller1', ['$scope', 'Service1', controllerFunc]);
app.controller('Controller2', ['$scope', 'Service2', controllerFunc]);
但是,它看起来不像 AngularJS 的方式。有没有更好的方法?或者它只是好?