我正在使用 AngularJS,但收到一条错误消息:Argument 'Controller' is not a function, got undefined
这是JSFiddle和 HTML 代码:
<h2>Hata's Tree-Like Set</h2>
<div ng-app ng-init="N=3;" ng-controller="Controller">
<input type="range" min="1" max="10" step="1" ng-model="N">
<div class="tree"></div>
</div
然后我Controller
在 JavaScript 中定义了这个函数,由于某种原因它没有注册。
function Controller($scope){
$scope.$watch("N", function(){ ... });}