0

我有一个角度控制器

@MyAngular = ($scope) -> 
    $scope.my = [...]
@MyAngular.$inject = ["$scope"]

我收到此消息错误:Argument 'MyAngular' is not a function, got undefined。在我看来,我有%div{"ng-controller" => "MyAngular"}

我发现了一些 SO 帖子,但没有任何作用

4

1 回答 1

0

好的,我知道了,我以更清洁的方式

app = angular.module "MyApp", []
app.controller 'MyAngular', ['$scope', ($scope) ->
  $scope.my = [...]
]
于 2013-08-18T18:33:41.627 回答