node.js 函数入门教程

发布时间:2020-11-04编辑:脚本学堂
node.js函数的入门操作教程,node.js中函数的使用与javascript类似,node.js匿名函数的实例教程,需要的朋友参考下。

javascript中,一个函数可以作为另一个函数接收一个参数。我们可以先定义一个函数,然后传递,也可以在传递参数的地方直接定义函数。

node.js中函数的使用与javascript类似,例如:
 

复制代码 代码示例:

function say(word) {
  console.log(word);
}

function execute(someFunction, value) {
  someFunction(value);
}

execute(say, "Hello");
 

以上代码中,把 say 函数作为execute函数的第一个变量进行了传递。这里返回的不是 say 的返回值,而是 say 本身!

如此,say 就变成了execute 中的本地变量 someFunction ,execute可以通过调用 someFunction() (带括号的形式)来使用 say 函数。

当然,因为 say 有一个变量, execute 在调用 someFunction 时可以传递这样一个变量。

1、匿名函数

可以把一个函数作为变量传递。
但是不一定要绕这个"先定义,再传递"的圈子,可以直接在另一个函数的括号中定义和传递这个函数:
 

复制代码 代码示例:

function execute(someFunction, value) {
  someFunction(value);
}

execute(function(word){ console.log(word) }, "Hello");
 

在 execute 接受第一个参数的地方直接定义了我们准备传递给 execute 的函数。

用这种方式,甚至不用给这个函数起名字,这也是为什么它被叫做匿名函数。

2、函数传递怎么让apache/ target=_blank class=infotextkey>http服务器工作? node.js 创建http服务器简单实例

HTTP服务器实现代码:
 

复制代码 代码示例:

var http = require("http");

http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8888);

向 createServer 函数传递了一个匿名函数。

以下代码,也可以实现上述功能:
 

复制代码 代码示例:

var http = require("http");

function onRequest(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}

http.createServer(onRequest).listen(8888);