angular.module(‘GR.app‘, []) .filter( ? ? "store",function(){ ? ? ? ? return function(params){ ? ? ? ? ? ? var spec = params["spec"]; ? ? ? ? ? ? for(var key in spec){ ? ? ? ?...
分类:
其他好文 时间:
2015-07-13 12:28:02
阅读次数:
109
AngularJS中的过滤器是用于对数据的格式化,或者筛选的函数,可以直接通过以下语法使用:{{expression|filter}}{{expression|filter1|filter2}}{{expression|filter1:param1,param2,...|filter2}过滤器的种类有number,currency,date,json,limitTo,lowercase,uppercase,f..
分类:
Web程序 时间:
2015-06-28 20:13:57
阅读次数:
129
Order
var app = angular.module('Demo', []);
app.controller('TestCtrl', function($scope) {
$scope.name = 'jack';
$scope.country = 'American';
$sc...
分类:
其他好文 时间:
2015-04-03 01:38:27
阅读次数:
422