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 중국어 홈페이지(www.php.cn)를 참고해주세요!