美文网首页
node之http服务(一)

node之http服务(一)

作者: 一爷之秋 | 来源:发表于2019-03-12 14:33 被阅读0次

    1.引入http,const http = require('http');
    2.创建一个服务,调用createServer()方法,返回一个server对象。
    createServer回调函数,在每次访问服务器时都会执行。
    该回调函数可传两个参数,request请求,response响应


    image.png

    response提供一些方法,其中
    response.writeHead()写入响应头信息,第一个参数为状态码,第二个参数为状态信息,第三个参数为响应头信息
    response.write() 写入响应数据
    response.end() 该方法表明该请求响应已结束,参数可传回调函数,请求响应结束后做一些事情。
    3.服务监听,server.listen(8089),第一个参数为监听的端口号。

    此时在终端启动服务

    image.png
    然后在浏览器上http://localhost:8089/, localhost后面的为监听的端口号,可看到请求结果为上面写入的响应数据
    image.png
    image.png

    相关文章

      网友评论

          本文标题:node之http服务(一)

          本文链接:https://www.haomeiwen.com/subject/evngpqtx.html