使用angular写一个hello world
angularjs遵循MVC模式,惯例来一个helloworld吧
<htmlng-app>
<head>
<scripttype="text/javascript"src="angular.min.js"></script>
<scripttype="text/javascript"src="controllers.js"></script>
</head>
<body>
<divng-controller='HelloController'>
<p>{{greeting.text}},world</p>
</div>
</body>
</html>
controllers.js中的内容
functionHelloController($scope){
$scope.greeting={text:"Hello"};
}
MVC写起来很不错的感觉~~