5

参考下面的示例,有没有办法使用 myCtrl 代替 myCtrl2,将参数作为本地而不是附加到 $scope 传递?

$controller服务完全执行包装现有控制器所需的操作,但无法从模板访问它。

<div ng-app>

  <script type="text/ng-template" id="/tpl.html">
    value of y: {{y}}
  </script>

  <div 
    ng-repeat='x in [1,2,3]' 
    ng-controller='myCtrl2'
    ng-include="'/tpl.html'">
  </div>

</div>
function myCtrl($scope, x){
  $scope.y = x * 20;
}

function myCtrl2($scope){
  $scope.y = $scope.x * 20;
}

http://jsfiddle.net/4Zmym/16/

4

1 回答 1

13

我无法从您的问题中完全看出您正在寻找什么,但您可以尝试创建自己的指令(指令的修改版本ngController可以指定控制器注入:

app.directive('myController', function($controller) {
  return {
    scope: true,
    link: function(scope, elem, attrs) {
      var locals = scope.$eval(attrs.locals);
      angular.extend(locals, {$scope: scope});
      $controller(attrs.myController, locals);
    }
  };
});

你会像这样使用它:

<div my-controller='MainController' locals='{x: "test", y: 42}'></div>

这是一个演示该技术的 JsFiddle:http: //jsfiddle.net/BinaryMuse/qBZZk/

于 2013-02-26T08:45:15.010 回答