AngularJS 運算式詳解及執行個體代碼_AngularJS

來源:互聯網
上載者:User

前面瞭解了AngularJS的基本用法,這裡就跟著PDF一起學習下運算式的相關內容。

  在AngularJS中的運算式,與js中並不完全相同。

  首先它的運算式要放在{{}}才能使用,其次相對於javascript中的運算式概念,它有以下幾點不同:

  1 範圍不同

  在javascript中預設的作用於是window,但是在angularJs中就不同了。它使用$scope控製作用於。

  2 允許未定義的值

  在angularjs中,如果使用了未定義的運算式,也不會出現錯誤,直接返回空值。

  3 過濾器

  可以在運算式中使用 | 管道命令符,添加過濾器,與UNIX的命令列類似。 

  4 $符號

  用以區別angular的方法與使用者自訂的方法。

  下面看一段小代碼:

<!doctype html><html ng-app>  <head>     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />     <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script>  </head>  <body>    <div ng-controller="ctl">      name:<input ng-model="name" type="text">      <button ng-click="reset()">reset</button>      <br>      {{name}}      <br>      hello ! {{test}}      <br>      filter : {{name | uppercase}}    </div>    <script type="text/javascript">      function ctl($scope){        var str = "init";        $scope.name = str;        $scope.reset = function(){          $scope.name = str;        }      }    </script>  </body></html>

  通過reset觸發reset方法,重設name變數的內容;

  在運算式中,引用了未定義的test,但是並沒有報錯,直接預設顯示為空白;—— {{test}}

  最後使用過濾器,將運算式中name的值轉化成大寫。—— {{name | uppercase}}

  運行結果:

 

 

     以上就是對AngularJS 運算式的資料整理,後續繼續補充相關資料,謝謝大家的支援!

相關文章

聯繫我們

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