AngularJS-translation
AngularJS-translation copied to clipboard
HowTo - define custom filters?
不知道内置的currency是否支持多国货币符号。不支持的话如何增加自定义filter以增加人民币符号¥?
angular.module('app'),[])
.filter('RMB',function(input){
return "¥" + input;
});