AngularJS --- Scope

來源:互聯網
上載者:User

標籤:cli   email   ack   tin   mod   rip   --   應用   html   

scope(範圍)是應用在 HTML(視圖)和 JavaScript(控制器)之間的紐帶。

Scope是一個對象,有可用的方法和屬性。

Scope 可應用在視圖和控制器上。

Scope 是模型。

Scope 是一個JavaScript 對象,帶有屬性和方法,這些屬性和方法可以在視圖和控制器中使用。 

 1      <div ng-app="myApp" ng-controller="myCtrl"> 2           <input ng-model="name"> 3           <h1>{{greeting}}</h1> 4           <button ng-click="sayHello()">點我</button> 5      </div> 6      <script> 7           var app = angular.module(‘myApp‘,[]); 8           app.controller(‘myCtrl‘,function($scope){ 9                $scope.name="zhouli";10                $scope.sayHello = function(){11                     $scope.greeting = ‘Hello ‘ + $scope.name + ‘!‘;12                };13           });14      </script>

 

rootScope 可作用於整個應用中,是各個 controller 中 scope 的橋樑。用 rootscope 定義的值,可以在各個contrller中使用。

 

 1      <div ng-app="myApp" ng-controller="myCtrl"> 2           <h1>{{lastName}}</h1> 3           <ul> 4                <li ng-repeat="x in names">{{x}} {{lastName}}</li> 5           </ul> 6      </div> 7      <script> 8           var app = angular.module(‘myApp‘,[]); 9           app.controller(‘myCtrl‘,function($scope,$rootScope){10                $scope.names = [‘Email‘,‘Tobias‘,‘Linus‘];11                $rootScope.lastName = ‘Refsnes‘;12           });13      </script>

 

AngularJS --- Scope

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.