前面瞭解了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 運算式的資料整理,後續繼續補充相關資料,謝謝大家的支援!