91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nodejs核心模塊之net和http的使用詳解

發布時間:2020-08-28 09:56:04 來源:腳本之家 閱讀:203 作者:半截的詩 欄目:web開發

前言

net和http模塊都是node核心模塊之一,他們都可以搭建自己的服務端和客戶端,以響應請求和發送請求。

net模塊服務端/客戶端

這里寫的net模塊是基于tcp協議的服務端和客戶端,用到net.createServer和net.connect實現的一個簡單請求與響應的demo。

//tcp服務端
var net = require('net')
var sever=net.createServer(function(connection){
  //客戶端關閉連接執行的事件
 connection.on('end',function(){
  //  console.log('客戶端關閉連接')
 })
 connection.on('data',function(data){
  console.log('服務端:收到客戶端發送數據為'+data.toString())
})
//給客戶端響應的數據
 connection.write('response hello')
})
sever.listen(8080,function(){
  // console.log('監聽端口')
})

//tcp客戶端
var net = require('net')
var client = net.connect({port:8080},function(){
  // console.log("連接到服務器")
})
//客戶端收到服務端執行的事件
client.on('data',function(data){
  console.log('客戶端:收到服務端響應數據為'+data.toString())
  client.end()
})
//給服務端傳遞的數據
client.write('hello')
client.on('end',function(){
  // console.log('斷開與服務器的連接')
})

運行結果

Nodejs核心模塊之net和http的使用詳解

Nodejs核心模塊之net和http的使用詳解

http模塊四種請求類型

http服務端:

http.createServer創建了一個http.Server實例,將一個函數作為HTTP請求處理函數。這個函數接受兩個參數,分別是請求對象(req)處理請求的一些信息和響應對象(res)處理響應的數據。

//http服務端
const http = require("http");
var fs = require("fs");
var url = require('url')

http.createServer(function (req, res) {
  var urlPath = url.parse(req.url);
  var meth = req.method
  //urlPath.pathname 獲取及設置URL的路徑(path)部分
  //meth 獲取請求數據的方法,一個路徑只能被一種方法請求,其他方法請求時返回404
  if (urlPath.pathname === '/' && meth === 'GET') {
    res.write(' get ok');
  } else if (urlPath.pathname === '/users' && meth === 'POST') {
    res.writeHead(200, {
      'content-type': 'text/html;charset=utf-8'
    });
    fs.readFile('user.json', function (err, data) {
      if (err) {
        return console.error(err);
      }
      var data = data.toString();
      // 返回數據
      res.write(data);
    });
  } else if (urlPath.pathname === '/list' && meth === 'PUT') {
    res.write('put ok');
  } else if (urlPath.pathname === '/detail' && meth === 'DELETE') {
    res.write(' delete ok');
  } else {
    res.writeHead(404, {
      'content-type': 'text/html;charset=utf-8'
    });
    res.write('404')
  }
  res.on('data', function (data) {
    console.log(data.toString())
  })

}).listen(3000, function () {
  console.log("server start 3000");
});

http客戶端:

http模塊提供了兩個創建HTTP客戶端的方法http.request和http.get,以向HTTP服務器發起請求。http.get是http.request快捷方法,該方法僅支持GET方式的請求。

http.request(options,callback)方法發起http請求,option是請求的的參數,callback是請求的回掉函數,在請求被響應后執行,它傳遞一個參數,為http.ClientResponse的實例,處理返回的數據。

options常用的參數如下:

1)host:請求網站的域名或IP地址。
2)port:請求網站的端口,默認80。
3)method:請求方法,默認是GET。
4)path:請求的相對于根的路徑,默認是“/”。請求參數應該包含在其中。
5)headers:請求頭的內容。

nodejs實現的爬蟲其實就可以用http模塊創建的客戶端向我們要抓取數據的地址發起請求,并拿到響應的數據進行解析。

get

//http客戶端
const http = require("http");
// 發送請求的配置
let config = {
  host: "localhost",
  port: 3000,
  path:'/',
  method: "GET",
  headers: {
    a: 1
  }
};
// 創建客戶端
let client = http.request(config, function(res) {
  // 接收服務端返回的數據
  let repData='';
  res.on("data", function(data) {
    repData=data.toString()
    console.log(repData)
  });
  res.on("end", function() {
    // console.log(Buffer.concat(arr).toString());
  });
});
// 發送請求
client.end();結束請求,否則服務器將不會收到信息

客戶端發起http請求,請求方法為get,服務端收到get請求,匹配路徑是首頁,響應數據:get ok。

post

//http客戶端
var http = require('http');
var querystring = require("querystring");
var contents = querystring.stringify({
  name: "艾利斯提",
  email: "m778941332@163.com",
  address: " chengdu",
});
var options = {
  host: "localhost",
  port: 3000,
  path:"/users",
  method: "POST",
  headers: {
    "Content-Type": "application/x-www-form-urlencoded",
    "Content-Length": contents.length
  }
};
var req = http.request(options, function (res) {
  res.setEncoding("utf8");
  res.on("data", function (data) {
    console.log(data);
  })
})

req.write(contents);
//結束請求,否則服務器將不會收到信息
req.end(); 
//響應的數據為
{
  "user1" : {
    "name" : "mahesh",
    "password" : "password1",
    "profession" : "teacher",
    "id": 1
  },
  "user2" : {
    "name" : "suresh",
    "password" : "password2",
    "profession" : "librarian",
    "id": 2
  }
 }

客戶端發起http請求,請求方法為post,post傳遞數據,匹配路徑是/users,服務器響應請求并返回數據user.json里的內容。

put

//http客戶端
const http = require("http");
// 發送請求的配置
let config = {
  host: "localhost",
  port: 3000,
  path:"/list",
  method: "put",
  headers: {
    a: 1
  }
};
// 創建客戶端
let client = http.request(config, function(res) {
  // 接收服務端返回的數據
  let repData='';
  res.on("data", function(data) {
    repData=data.toString()
    console.log(repData)
  });
  res.on("end", function() {
    // console.log(Buffer.concat(arr).toString());
  });
});
// 發送請求
client.end();

客戶端發起http請求,請求方法為put,服務端收到put請求,匹配路徑為/list,響應數據:put ok

delect

//http delete請求客戶端
var http = require('http');
var querystring = require("querystring");
var contents = querystring.stringify({
  name: "艾利斯提",
  email: "m778941332@163.com",
  address: " chengdu",
});
var options = {
  host: "localhost",
  port: 3000,
  path:'/detail',
  method: "DELETE",
  headers: {
    "Content-Type": "application/x-www-form-urlencoded",
    "Content-Length": contents.length
  }
};
var req = http.request(options, function (res) {
  res.setEncoding("utf8");
  res.on("data", function (data) {
    console.log(data);
  })
})

req.write(contents);
req.end();

服務端收到delete請求,匹配路徑為/detail,響應數據:delete ok

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌审旗| 正蓝旗| 庄浪县| 西华县| 昌黎县| 寿阳县| 百色市| 浦城县| 固阳县| 盐源县| 永济市| 天门市| 榆树市| 施秉县| 齐齐哈尔市| 新化县| 崇文区| 建始县| 和田县| 阿鲁科尔沁旗| 正镶白旗| 延津县| 册亨县| 安宁市| 剑河县| 雷波县| 蓝山县| 翁源县| 华容县| 那坡县| 上饶市| 尚志市| 迁安市| 南丹县| 横峰县| 山阴县| 丹寨县| 集贤县| 怀化市| 五台县| 聊城市|