我正在尝试构建简单明了(对我来说)单小提琴角JS示例并编写类似
的内容
var myApp = angular.module('myApp');
var myControllers = angular.module('myControllers', []);
myControllers
.controller('MyController', ['$scope', function ($scope) {
$scope.watts = 735.5;
}]);

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<body ng-app="myApp">
<div ng-controller="MyController">
Watts:<input type="text" ng-model="watts"><br/>
</div>
</body>
&#13;
不幸的是,它不起作用并抛出异常。
答案 0 :(得分:1)
如果您尝试将控制器放在单独的模块中,则需要将其列为主应用程序的依赖项。
{{1}}&#13;
{{1}}&#13;