控制器功能未执行Angular。
'use strict';
angular.module('newproejctApp')
.controller('dashboardCtrl', function ($rootScope, $scope, User, Auth,dataService) {
$scope.test="this is not working";
});
<div class="container" ng-controller="dashboardCtrl">
{{test}}
</div>
上述样本由于某种原因不起作用。该项目由Yeoman制作,所有其他控制器正常运行。
答案 0 :(得分:0)
我认为您需要在模块定义中传入空数组:
angular.module('newproejctApp', [])