全栈开发

Node.js教程(03)|创建客户端和服务端

2019-07-19  本文已影响60人  夏海峰
什么是 Web 服务器?

Web服务器一般指网站服务器,是指驻留于因特网上某种类型计算机的程序,Web服务器的基本功能就是提供Web信息浏览服务。它只需支持HTTP协议、HTML文档格式及URL,与客户端的网络浏览器配合。大多数 web 服务器都支持服务端的脚本语言(php、python、ruby)等,并通过脚本语言从数据库获取数据,将结果返回给客户端浏览器。目前最主流的三个Web服务器是Apache、Nginx、IIS。

Node.js 创建 Web 服务器(Server)
// http.js

var http = require('http')
var fs = require('fs')
var url = require('url')

http.createServer(function(req, res) {
    var pathname = url.parse(req.url).pathname
    console.log('pathname: ' + pathname)
    var filename = pathname.substr(1)
    console.log('filename: ' + filename)
    fs.readFile(filename, function(err, data) {
        if(err) {
            // 找不到文件,给出404
            res.writeHead(404, {'Content-Type': 'text/html'})
        } else {
            // 成功200
            res.writeHead(200, {'Content-Type': 'text/html'})
            res.write(data.toString())
        }
        res.end()
    })
}).listen(8989)

console.log('server is running on localhost:8989')
Node.js 创建 Web 客户端(Client)
// client.js

var http = require('http')

// 用于请求的配置选项
var options = {
    host: 'localhost',
    port: '8989',
    path: '/index.html'
}

// 处理响应数据的回调函数
var callback = function(res) {
    var body = ''
    res.on('data', function(data) {
        body += data
    })
    res.on('end', function() {
        console.log(body)
    })
}

// 向服务端发送请求
var req = http.request(options, callback)
req.end()


Node.js 完整教程 第03篇 结束

上一篇下一篇

猜你喜欢

热点阅读