ホームページ  >  記事  >  ウェブフロントエンド  >  Node.jsの関数

Node.jsの関数

黄舟
黄舟オリジナル
2017-01-17 15:54:031135ブラウズ

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 中国語 Web サイト (www. php.cn)!


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。