【AngularJS】過濾器——currency 過濾器
過濾器:在引用model的{{ }}中,加入管道符號' | ';
管道符號後面接過濾指令;
currency 過濾器將數字格式化為貨幣格式:
uppercase 過濾器將字串格式化為大寫:
lowercase 過濾器將字串格式化為小寫:
orderBy 過濾器根據表示式排列陣列:
原始碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>
<div ng-app
數量:<input type="number"
ng-model="quantity">
價格:<input type="number"
ng-model="price">
<p> 總價={{(quantity*price) | currency}} </p>
</div>
<script>
var app=angular.module('myApp',[]);
app.controller('costCtrl',function($scope){
$scope.quantity=1;
$scope.price=9.99;
});
</script>
</body>
</html>
截圖:
注意:
①:所有的操作都在雙大括號裡面;
②:頁面存放到Angular的元件都要在ng-model中宣告,例如,
ng-model="quantity"
ng-model="price"
在ng-model中宣告,才能在'' {{ }} ''內呼叫;
③:正常的邏輯是這樣的:
ng-app宣告應用程式;
ng-controller宣告應用控制器,處理程式中的資料;
ng-model宣告元件,表明作用程式下面的元件;