15
<div ng-controller="CartController">
     <div ng-repeat="item in items">
          <span>{{item.title}}</span>
          <input ng-model="item.quantity">
          <span>{{item.price | currency}}</span>
          <span>{{item.price * item.quantity | currency}}</span>
     </div>
     <div>Total: {{totalCart() | currency}}</div>
     <div>Discount: {{bill.discount | currency}}</div>
     <div>Subtotal: {{subtotal() | currency}}</div>
</div>

上面代码中的|- 它有什么作用?

4

1 回答 1

24

管道符号 (|) 用于在 AngularJS 中应用过滤器。过滤器是为处理模型转换而调用的函数。它基本上只是一个全局函数,不需要在作用域上注册函数,并为常规函数调用提供更方便的语法。货币过滤器会自动格式化用户当前货币区域设置的数字。

[不幸的是,视频内容现在落后于付费专区] 查看此视频以获取示例 http://egghead.io/lessons/angularjs-built-in-filters

于 2013-10-15T01:07:48.550 回答