err

关于node.js回调函数的一点联想 愤怒(二)

首先大家看一下这个普通的javascript的回调函数。[br] function all(call_fun) {var k = 0for (var i = 0; i 我们也发现nodejs中也有很多回调函数,并且也有很多参数。[br]下面是一个读取文件的例子: var fs=require('fs'); fs.readFile('2.txt',function(err

node.js访问LDAP

node-ldapnode ldap clientgithubhttps://github.com/ymyang/node-ldap安装npm install node-ldap使用已通过Windows Server 2008测试var LdapClient = RedisClient('node-ldap');var client = new LdapClient({

Nodejs Client for FastDFS

Nodejs Client for FastDFSFastDFS 是分布式文件存储系统。这个项目是FastDFS的NodeJS客户端,用来与FastDFS Server进行交互,进行文件的相关操作。我测试过的server版本是4.0.6。githubhttps://github.com/ymyang/fdfs安装npm install fdfs使用var fdfs = re

Mongoose 批量插入文档

Mongoose 批量插入文档 var TestSchema = new mongoose.Schema({ / Test Schema / }) var TestModel = mongoose.model('Test', TestSchema); model.create() TestModel.create({ candy: 'jelly bean' }, { can