ホームページ > 記事 > ウェブフロントエンド > Node.jsの関数
Node.js 関数
匿名関数:scope.js
[code]function execute(someFn, value) { someFn(value); } execute(function (word) { console.log(word) }, 'hello');
関数の受け渡しによって 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');
クライアント: http://localhost :8888 /%E5%87%BD%E6%95%B0/server.js
上記は Node.js 関数の内容です。その他の関連コンテンツについては、PHP 中国語 Web サイト (www. php.cn)!