使用angular写一个hello world
程序员文章站
2022-04-21 08:01:42
angularjs遵循mvc模式,惯例来一个hello world吧
复制代码 代码如下:
&nb...
angularjs遵循mvc模式,惯例来一个hello world吧
<html ng-app>
<head>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="controllers.js"></script>
</head>
<body>
<div ng-controller='hellocontroller'>
<p>{{greeting.text}}, world</p>
</div>
</body>
</html>
controllers.js中的内容
function hellocontroller($scope) {
$scope.greeting = { text: "hello"};
}
mvc写起来很不错的感觉~~
下一篇: 军事天才吴起的求官崛起之路,有多坎坷?