标签:http io cti 代码 服务器 res type ad
1.HTTP:hyper text transmit protocal (超文本传输协议)
以下为利用http创建一个sever并连接相应的网页类容
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});//相应行头
response.write("Hello World"); //所要显示的网页内容
response.end();
}).listen(8888); //坚挺8888,一般网页监听都为80,所以约定俗成的在输入网址时省略;
其中http.createServer().listen()为基本格式,createServer()中引用了一个匿名函数。
全文意思为:监听用于在地址栏中输入的端口,若为8888则返回“hello world”显示与网页中
验证步骤:当输入完以上代码后,用webstrom运行开启;在浏览器地址栏中输入网址:8888;在浏览器窗口看到Hello World字样
注意点:1.务必要求创建的服务器开启,不然在浏览器中输入地址是不能返回的;
2.端口尽量是1024以上,因为1~1024已被占用
标签:http io cti 代码 服务器 res type ad
原文地址:http://my.oschina.net/u/1865749/blog/300195