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
การคัดลอกรหัสมีดังนี้:
ฟังก์ชั่น hellocontroller ($ scope) {
$ scope.greeting = {text: "hello"};
-
MVC รู้สึกดีมากที่ได้เขียน ~~