restify入门

2013-12-28
阅读 3 分钟
6.9k
restify是用于编写RESTful API的Node.js的模块。 下面介绍如何使用restify和mongodb编写一个面向geek的招聘平台,使用RESTful API发布和查看用工需求。 {代码...} 运行: {代码...} 很好,虽然什么也没干,但是已经能跑了! restify模块有很多内置插件,不用白不用。 {代码...} restify.queryParser()插件用于解析HTTP请...

underscore函数

2013-12-22
阅读 2 分钟
5k
underscore提供如下函数,很是方便: Underscore 提供了常用的函數。 Collections each map reduce reduceRight find filter where findWhere reject every some contains invoke pluck max min sortBy groupBy countBy shuffle toArray size Arrays first initial last rest compact flatten without union intersectio...

JavaScript常用函数

2013-12-19
阅读 1 分钟
2.9k
primitives可以表现得像对象,但其实不是对象。当你把它们当作对象来用的话,JavaScript会为你创建一个对象,接着就销毁了。类似new String("Nicholas")、new Boolean(true)和new Number(10)的做法使得开发者的思路会从对象和原始值之间跳来跳去,会增加出bug的概率。Google的JavaScript风格指南就禁止使用原始包装类型...