アングラーJS基礎ノート

929 ワード

ng-model
ng-model        ,      。       ;
ng-bind      ,        ,              ;
 ng-bind {{}}     ,ng-bind            。
スコープ
Scope(   )      HTML (  )   JavaScript (   )     。
Scope      ,         。
Scope            
サービスとは何ですか
  AngularJS  ,          ,     AngularJS      。
AngularJS    30     。
   $location   ,           URL   。
実例
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $location) {
    $scope.myUrl = $location.absUrl();
});