http模塊怎么在NodeJS中使用?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),余慶企業(yè)網(wǎng)站建設(shè),余慶品牌網(wǎng)站建設(shè),網(wǎng)站定制,余慶網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,余慶網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
創(chuàng)建Web服務(wù)器
/** * node-http 服務(wù)端 */ let http = require('http'); let url = require('url'); let fs = require('fs'); // 創(chuàng)建服務(wù)器 let server = http.createServer((req, res) => { // 解析請(qǐng)求 let pathname = url.parse(req.url).pathname; // 形如`/index.html` console.log('收到對(duì)文件 ' + pathname + '的請(qǐng)求'); // 讀取文件內(nèi)容 fs.readFile(pathname.substr(1), (err, data) => { if (err) { console.log('文件讀取失敗:' + err); // 設(shè)置404響應(yīng) res.writeHead(404, { 'Content-Type': 'text/html' }); } else { // 狀態(tài)碼:200 res.writeHead(200, { 'Content-Type': 'text/html' }); // 響應(yīng)文件內(nèi)容 res.write(data.toString()); } // 發(fā)送響應(yīng) res.end(); }); }); server.listen(8081); console.log('服務(wù)運(yùn)行在:http://localhost:8081,請(qǐng)?jiān)L問(wèn):http://localhost:8081/index.html');
index.html
Node http Hi~
運(yùn)行server.js,打開(kāi)瀏覽器訪問(wèn)。
創(chuàng)建客戶端
client.js
/** * node http 創(chuàng)建客戶端 */ let http = require('http'); // 請(qǐng)求選項(xiàng) let options = { host: 'localhost', port: '8081', path: '/index.html' }; // 處理響應(yīng)的回調(diào)函數(shù) let callback = (res) => { // 不斷更新數(shù)據(jù) let body = ''; res.on('data', (data) => { body += data; }); res.on('end', () => { console.log('數(shù)據(jù)接收完成'); console.log(body); }); } // 向服務(wù)端發(fā)送請(qǐng)求 let req = http.request(options, callback); req.end();
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。