溫馨提示×

溫馨提示×

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

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

Node.js中怎么發(fā)起get/post請求

發(fā)布時間:2021-06-17 16:50:17 來源:億速云 閱讀:148 作者:Leah 欄目:web開發(fā)

Node.js中怎么發(fā)起get/post請求,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1、get

由于get請求的參數(shù)在url后面,所以相對比較簡單。node.js中的url模塊提供了parse函數(shù)來處理。具體代碼如下:

//引入模塊
var http=require('http');
var url=require('url');
var util=require('util');

//創(chuàng)建http Server 處理請求
http.createServer(function(req,res){
 res.writeHead(200,{'Content-Type': 'text/plain'});

 //解析url參數(shù)
 var params=url.parse(req.url,true).query;
 res.write('用戶名:'+params.name);
 res.write('\n');
 res.write('密碼'+params.password);
 res.end();
}).listen(8888);

測試:

注意:上面代碼中監(jiān)聽的是8888端口。

Node.js中怎么發(fā)起get/post請求

2、post

post請求的內(nèi)容都包含在請求體中,因此處理起來沒有g(shù)et請求那么簡單。所有node.js 默認是不會解析請求體的,當你需要的時候,需要手動來做。

//引入模塊
var http=require('http');
var querystring=require('querystring');


var postHTML = 
 '<html><head><meta charset="utf-8"><title> Node.js 實例</title></head>' +
 '<body>' +
 '<form method="post">' +
 '用戶名: <input name="name"><br>' +
 '密碼: <input name="password"><br>' +
 '<input type="submit">' +
 '</form>' +
 '</body></html>'
console.log('準備html');
//創(chuàng)建http Server 處理請求
http.createServer(function(req,res){
 console.log('進入http Server');
 //定義post變量,暫存請求體信息
 var body='';

 //通過req的data事件監(jiān)聽函數(shù),當接收到請求體的數(shù)據(jù),累加到post變量
 req.on('data',function(chunk){
  body+=chunk;
 });
 console.log('進入req end 1');
 //在end事件觸發(fā)后,將post解析為真正的post請求格式
 req.on('end',function(){
  body=querystring.parse(body);
  res.writeHead(200,{'Content-Type': 'text/html; charset=utf8'});
  console.log('進入req end 2');
  if(body.name && body.password){
   res.write(body.name);
   res.write('<br>');
   res.write(body.password);
  }else{
   res.write(postHTML);
  }
  res.end();
 });
}).listen(8888);

測試:

在node終端啟動成功后,瀏覽器輸入地址http://localhost:8888,看到如下頁面:

Node.js中怎么發(fā)起get/post請求

輸入用戶名和密碼,完成回寫到瀏覽器。

Node.js中怎么發(fā)起get/post請求

3、擴展

到此,node.js處理get和post請求的小例子就做完了。現(xiàn)在,應(yīng)該和過去的語言對比找關(guān)系,編織知識網(wǎng)了。

3.1模塊

每種語言都提供了一定的“基礎(chǔ)設(shè)施”或者叫“基礎(chǔ)工具”,比如java/c++的類庫。node也提供了很多模塊、函數(shù)、常用工具等,引入的位置在Demo的最上方,看到模塊的名字基本上就能猜到它的功能。
比如:

var http=require('http');
var url=require('url');
var util=require('util');

3.2Web服務(wù)器

Web服務(wù)器的基本功能就是提供Web信息瀏覽服務(wù)。它只需支持HTTP協(xié)議、HTML文檔格式及URL,與客戶端的網(wǎng)絡(luò)瀏覽器配合。

大致的架構(gòu)邏輯是:Browser——>Web Server——>Application Server——>DB。

web服務(wù)器、客戶端實例:

需要引入http模塊,使用createServer方法創(chuàng)建。
注意:這里就不詳細介紹了,只說明主要流程。

1)Server

//創(chuàng)建http服務(wù)器
http.createServer( function (request, response) { 
 // 解析請求,包括文件名
 var pathname = url.parse(request.url).pathname;

 // 從文件系統(tǒng)中讀取請求的文件內(nèi)容,
 fs.readFile(pathname.substr(1), function (err, data) {

   // 響應(yīng)文件內(nèi)容
   response.write(data.toString());  
  }
  // 發(fā)送響應(yīng)數(shù)據(jù)
  response.end();
 }); 
}).listen(8081);

// 控制臺會輸出以下信息
console.log('Server running at http://127.0.0.1:8081/');

2)Client

var http = require('http');

// 封裝請求的對象
var options = {
 host: 'localhost',
 port: '8081',
 path: '/index.htm' 
};

// 處理響應(yīng)的回調(diào)函數(shù)
var callback = function(response){
 // 不斷更新數(shù)據(jù)
 var body = '';
 response.on('data', function(data) {
  body += data;
 });

 response.on('end', function() {
  // 數(shù)據(jù)接收完成
  console.log(body);
 });
}
// 向服務(wù)端發(fā)送請求
var req = http.request(options, callback);
req.end();

執(zhí)行server.js,

Node.js中怎么發(fā)起get/post請求

然后執(zhí)行client.js,然后就可以獲得index.html的內(nèi)容了。

Node.js中怎么發(fā)起get/post請求

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

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

AI