欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用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写起来很不错的感觉~~