Angularjs控制器初始化

时间:2015-01-23 06:13:57

标签: javascript angularjs declaration angularjs-controller angularjs-module

我正在学习AngularJs。我在Plunker上创建了我的第一个应用程序但它无法初始化控制器。我到底错过了什么?

Here is the link of my plunker project

    <html ng-app>

<head>
  <script data-require="angular.js@*" data-semver="1.4.0-beta.1" src="https://code.angularjs.org/1.4.0-beta.1/angular.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body ng-controller="testcontroller">
  <h1>Hello {{message}}</h1>
</body>

</html>

var testcontroller = function($scope) {
  $scope.message = "world";
};

1 个答案:

答案 0 :(得分:1)

这是Plunkr

声明ng-app="myApp"

您正在以错误的方式定义控制器

angular.module('myApp',[])
.controller('testcontroller', function($scope){
  $scope.message="world";
});