node http get亂碼的解決辦法:1、開啟相應的react檔案;2、通過「var req = http.get(url,function(res){res.setEncoding('utf-8');var html = ''res.on('data',function(data){html+=data.toString();})...」語句設定程式設計為「utf-8」即可。
本教學操作環境:Windows10系統、node v10.16.0版、Dell G3電腦。
node http get 亂碼怎麼辦?
nodejs http.get亂碼問題處理方法
程式碼如下:
var req = http.get(url,function(res){
res.setEncoding('utf-8');
var html = ''
res.on('data',function(data){
html+=data.toString();
}).on('end',function(){
console.log(html);
})
});
登入後複製
相關介紹:
http.get :
由於大多數請求都是沒有主體的 GET 請求,因此 Node.js 提供了這個便捷的方法。 這個方法與 http.request() 的唯一區別是它將方法設定為 GET 並自動呼叫 req.end()。 注意,由於 http.ClientRequest 章節中所述的原因,回撥必須注意消費響應資料。
主要用於做資料請求。
有關於http.get 程式碼的解讀:
const http =require('http');//由於http.get是Node的http模組 所以第一件事情當然是引入http模組啦~
http.get('這裡是你想要請求的介面地址', (res) => {//res是請求後端給你的資料
const { statusCode } = res;//獲取請求的狀態碼
const contentType = res.headers['content-type'];//獲取請求型別
let error;
if (statusCode !== 200) {//如果請求不成功 (狀態碼200代表請求成功哦那個)
error = new Error('請求失敗\n' +
`狀態碼: ${statusCode}`); //報錯丟擲狀態碼
} else if (!/^application\/json/.test(contentType)) {//驗證請求資料型別是否為json資料型別 json的content-type :'content-type':'application/json'
error = new Error('無效的 content-type.\n' +//再次報錯
`期望的是 application/json 但接收到的是 ${contentType}`);
}
if (error) {//如果報錯了
console.error(error.message);
res.resume();//將請求的錯誤存入紀錄檔檔案
return;
}
//請求成功
res.setEncoding('utf8');//字元編碼設為萬國碼
let rawData = '';//定義一個字元變數
res.on('data', (chunk) => { rawData += chunk; });//通過data事件拼接資料流得到資料
res.on('end', () => {//end表示獲取資料結束了
try { //捕獲錯誤資訊
console.log(rawData);//輸出資料
} catch (e) {
console.error(e.message);
}
});
}).on('error', (e) => {
console.error(`出現錯誤: ${e.message}`);
});
登入後複製
推薦學習:《》
以上就是node http get 亂碼怎麼辦的詳細內容,更多請關注TW511.COM其它相關文章!