我有一个角度控制器
@MyAngular = ($scope) ->
$scope.my = [...]
@MyAngular.$inject = ["$scope"]
我收到此消息错误:Argument 'MyAngular' is not a function, got undefined
。在我看来,我有%div{"ng-controller" => "MyAngular"}
我发现了一些SO帖子,但没有做到这一点
答案 0 :(得分:0)
好的,我得到了我,我采用了更清洁的方式
app = angular.module "MyApp", []
app.controller 'MyAngular', ['$scope', ($scope) ->
$scope.my = [...]
]