Angularjs控制器初始化
Angularjs controller initialization
我正在学习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";
};
这里是Plunkr
声明ng-app="myApp"
你定义控制器的方式有误
angular.module('myApp',[])
.controller('testcontroller', function($scope){
$scope.message="world";
});
我正在学习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";
};
这里是Plunkr
声明ng-app="myApp"
你定义控制器的方式有误
angular.module('myApp',[])
.controller('testcontroller', function($scope){
$scope.message="world";
});