0
我是angularJS的新手。AngularJs過濾器:如何綁定一個跨度中的兩個值,其中一個值是使用過濾器?
我想這樣使用angularJs輸出濾波器
我的第一個表達式:456 $ 5.00
如果我沒有使用過濾器,然後,{{}}顯示正常,但如果使用濾波器的輸出如下圖所示:
{{ 456+ " " + 56 | currency}}
我的代碼:
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app>
<p>My first expression: {{ 456 + " " + 5 | currency}}</p>
</div>
</body>
</html>
任何建議請。
對不起,但我不明白。你想要什麼?你的輸入是什麼,什麼是期望的輸出? –