コントローラー”mainCtrl”が何処から何処まで有効かをHTMLのほうで指定してきます。
そして、【myscript.js】で”mainCtrl”の定義をしていきます。
こうしてから scope に色々なメソッドやプロパティをつけると、HTML の方で使うことができる、という機能になっています。
—————————————————–
【index.html】
AngularJSの練習
{{users.length}} users.
- {{user.name}} {{user.score}}
——————————————-
【myscript.js】
var mainCtrl = function($scope) {
$scope.users = [
{"name":"taguchi", "score":52.22},
{"name":"tanaka", "score":38.22},
{"name":"yamada", "score":11.11},
];
}