AngularJS中的一些常用指令介紹

來源:互聯網
上載者:User

   這篇文章主要介紹了整理AngularJS中的一些常用指令,包括ng-app、ng-init、ng-model和ng-repeat這四個指令的講解,需要的朋友可以參考下

  AngularJS指令用於擴充HTML。這些都是先從ng- 首碼的特殊屬性。我們將討論以下指令:

  ng-app - 該指令啟動一個AngularJS應用。

  ng-init - 該指令初始化應用程式資料。

  ng-model - 此指令定義的模型,該模型是變數在AngularJS使用。

  ng-repeat - 該指令將重複集合中的每個項目的HTML元素。

  ng-app指令

  ng-app 指令啟動一個AngularJS應用。它定義根項目。它會自動初始化或啟動載入包含AngularJS應用程式的Web頁面的應用程式。它也被用來載入各種AngularJS模組AngularJS應用。在下面的例子中,我們定義預設AngularJS應用使用div元素的ng-app 屬性。

  ?

1 2 3 <div ng-app=""> ... </div>

  ng-init 指令

  ng-init 指令初始化一個AngularJS應用程式的資料。它被用來把值在應用程式中使用的變數。在下面的例子中,我們將初始化countries數組。使用JSON文法來定義countries數組。

  ?

1 2 3 4 5 6 <div ng-app="" ng-init="countries=[{locale:'en-US',name:'United States'}, {locale:'en-GB',name:'United Kingdom'}, {locale:'en-FR',name:'France'}]">   ... </div>

  ng-model指令

  ng-model指令定義在AngularJS應用中使用的模型/變數。在下面的例子中,我們定義了一個名為“name”的模型。

  ?

1 2 3 4 <div ng-app=""> ... <p>Enter your Name: <input type="text" ng-model="name"></p> </div>

  ng-repeat 指令

  ng-repeat 指令重複html元素集合中的每個項目。在下面的例子中,我們已經迭代了數組countries。

  ?

1 2 3 4 5 6 7 8 9 <div ng-app=""> ... <p>List of Countries with locale:</p> <ol> <li ng-repeat="country in countries"> {{ 'Country: ' + country.name + ', Locale: ' + country.locale }} </li> </ol> </div>

  例子

  下面的例子將展示上述所有指令。

  testAngularJS.html

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <html> <title>AngularJS Directives</title> <body> <h1>Sample Application</h1> <div ng-app="" ng-init="countries=[{locale:'en-US',name:'United States'}, {locale:'en-GB',name:'United Kingdom'}, {locale:'en-FR',name:'France'}]"> <p>Enter your Name: <input type="text" ng-model="name"></p> <p>Hello <span ng-bind="name"></span>!</p> <p>List of Countries with locale:</p> <ol> <li ng-repeat="country in countries"> {{ 'Country: ' + country.name + ', Locale: ' + country.locale }} </li> </ol> </div> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> </body> </html>

  輸出

  在Web瀏覽器開啟textAngularJS.html。輸入姓名並看到以下結果。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.