angular js todo list not not up

时间:2014-11-17 02:59:15

标签: javascript angularjs

在这里使用教程尝试初学者的Angular:https://www.youtube.com/watch?v=WuiHuZq_cg4。我认为文件位于适当的位置,权限设置,但我的index.html在我的浏览器上没有显示任何内容,Chrome开发工具显示所有内容,没有错误。代码在这里“https://gist.github.com/9ad771c60d33fc020216.git,但也在这里:[我缺少什么?]

的index.html:

<!doctype html>
<html ng-app>
<head>
  <script src="https://code.angularjs.org/1.0.0rc3/angular-1.0.0rc3.min.js"></script>
  <script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>  
  <script type="text/javascript" src="js/todo.js"></script>
  <link rel="stylesheet" href="bootstrap/css/bootstrap.css"
</head>

<body>
<div ng-controllers="TodoCtrl">
  {{totalTodos}}
</div>

</body>
</html>

todo.js:

function TodoCtrl($scope) {
  $scope.totalTodos = 4;
}

1 个答案:

答案 0 :(得分:1)

尝试

ng-controller="TodoCtrl"

而不是

ng-controllers="TodoCtrl"

S不会用控制器标记