码迷,mamicode.com
首页 >  
搜索关键字:lodash    ( 181个结果
lodash group by and sum
var data=[{value:1200,count:5},{value:1200,count:10},{value:1230,count:5},{value:1240,count:5}];console.log(_.chain(data) .groupBy("value") .map...
分类:其他好文   时间:2016-01-08 18:52:47    阅读次数:261
tocken和ticket的数据模型;
1 /* jshint -W079 */ 2 /* jshint -W020 */ 3 4 "use strict"; 5 var _ = require("lodash"); 6 7 module.exports = function(utils, db) { 8 9 // Model...
分类:其他好文   时间:2016-01-06 19:59:25    阅读次数:188
nodejs微信开发获取token,ticket-1
1 /* jshint -W079 */ 2 /* jshint -W020 */ 3 4 "use strict"; 5 var _ = require("lodash"); 6 var sha1 = require('sha1'); 7 var urlencode = requ...
分类:微信   时间:2016-01-06 18:04:23    阅读次数:1378
lodash用法系列(5),链式
Lodash用来操作对象和集合,比Underscore拥有更多的功能和更好的性能。官网:https://lodash.com/引用:安装:npm install lodash首先通过npm安装lodash:npm i --save lodash在js文件中引用lodash:var _ = requi...
分类:其他好文   时间:2015-12-01 23:02:38    阅读次数:450
lodash用法系列(4),使用Map/Reduce转换
Lodash用来操作对象和集合,比Underscore拥有更多的功能和更好的性能。官网:https://lodash.com/引用:安装:npm install lodash首先通过npm安装lodash:npm i --save lodash在js文件中引用lodash:var _ = requi...
分类:其他好文   时间:2015-12-01 22:59:19    阅读次数:237
lodash用法系列(3),使用函数
Lodash用来操作对象和集合,比Underscore拥有更多的功能和更好的性能。官网:https://lodash.com/引用:安装:npm install lodash首先通过npm安装lodash:npm i --save lodash在js文件中引用lodash:var _ = requi...
分类:其他好文   时间:2015-12-01 22:58:02    阅读次数:264
lodash用法系列(1),数组集合操作
Lodash用来操作对象和集合,比Underscore拥有更多的功能和更好的性能。官网:https://lodash.com/引用:安装:npm install lodash首先通过npm安装lodash:npm i --save lodash在js文件中引用lodash:var _ = requi...
分类:编程语言   时间:2015-12-01 21:21:07    阅读次数:3066
失败的尝试,使用继承扩展数组,以及ES6的必要性
我们都知道直接在原生对象上扩展对象是很不好的。所以prototype这样的库广受非议。一些库,比如lodash采用了工具包形式的扩展方式,绕开了对象的继承。由于es6的class的出现,我尝试以Array派生子对象的方式进行扩展。以下是一个简单的例子。"use strict"class Abc ex...
分类:编程语言   时间:2015-11-30 17:47:33    阅读次数:139
nodejs项目中的路由写法
1 //两种路由写法,一种封装成函数,返回结果,此种方法可以传递参数, 2 "use strict"; 3 var _ = require("lodash"); 4 var express = require('express'); 5 var router = express.Router();....
分类:Web程序   时间:2015-11-23 18:51:06    阅读次数:163
nodejs lodash的一些函数
1 _.compact用法 _.compact([0, 1, false, 2, '', 3,'mm']); var test = _.compact([-1,0, 1, false, 2, '', 3,'jj']); console.log(test);----1,1,2,3,jj//输...
分类:Web程序   时间:2015-10-20 11:42:04    阅读次数:195
181条   上一页 1 ... 15 16 17 18 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!