欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Node.js 函数

程序员文章站 2024-01-14 11:01:16
...
Node.js 函数

匿名函数:scope.js
[code]function execute(someFn, value) {
    someFn(value);
}
execute(function (word) {
    console.log(word)
}, 'hello');

Node.js 函数


函数传递是如何让HTTP服务工作的

案例:server.js

[code]var http = require('http');
var onRequest = function (request, response) {
    response.writeHead(200, { "Content-Type" : "text/plain"});
    response.write("Hello world");
    response.end();
}
http.createServer(onRequest).listen(8888);
console.log('服务器监听端口 8888');

Node.js 函数

客户端:http://localhost:8888/%E5%87%BD%E6%95%B0/server.js

Node.js 函数

以上就是Node.js 函数的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: Node.js,函数