zoukankan      html  css  js  c++  java
  • node.js 创建第一个应用

    载入http模块

    创建服务器,并监听端口

    1.使用 require 指令来载入 http 模块

      例:var http=require("http")

    2.创建服务器

      例:http.createServer(function(req,res){

      }).listen(8000)

      注:使用  http 模块中的 http.createServer()函数创建服务器

        listen 是监听端口 ,其中8000是端口号,默认端口号为80

        req:请求对象(单词可随便写,但第一个表请求)

        res:响应对象 (单词可随便写,但第二个表响应)

    3.常用状态码

      成功状态码:

        200:服务器成功

        304:返回页面 未修改

      失败状态码:

        404:请求网页不存在

        503:暂停服务

        500:内部服务器错误

  • 相关阅读:
    mouseenter和mouseleave,mouseover和mouseout
    哈哈哈
    instanceof与typeof
    js事件传参
    浮动与清除问题
    简易富文本编辑
    js之prototype
    json序列化
    我对Defer and Promise的实现
    Ajax 完整教程
  • 原文地址:https://www.cnblogs.com/liyuchun/p/6956816.html
Copyright © 2011-2022 走看看