码迷,mamicode.com
首页 > 其他好文 > 详细

Angular引入百分比过滤器

时间:2015-10-26 12:21:48      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

Installation

Install with Bower:

$ bower install angular-percentage-filter

Usage

Include the library:

<script src="/bower_components/angular-percentage-directive/percentage.js"></script>

Import it to the angular applicaiton:

angular.module(‘myApp‘, [‘percentage‘]);

Use it in the view:

<span>{{ 2/3 | percentage:2:"$" }}</span>
<span>{{ 0.2 | percentage }}</span>
<span>{{ (items | filter:{done: true}).length/items.length | percentage }}</span>


可以自定义小数位及百分号格式,比如

2/3 | percentage:2:"$"   --->   33.33$


Angular引入百分比过滤器

标签:

原文地址:http://my.oschina.net/u/2351685/blog/522026

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!