九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
Node.js基礎(chǔ)學(xué)習(xí)(1)
 1 //用于創(chuàng)建網(wǎng)站服務(wù)器的模塊
 2 const http = require('http');
 3 //app對(duì)象就是網(wǎng)站服務(wù)器對(duì)象
 4 const app = http.createServer();
 5 // node內(nèi)置對(duì)象 用于處理URL地址
 6 const url = require('url');
 7 
 8 //事件(請(qǐng)求)處理函數(shù),當(dāng)客戶(hù)端有請(qǐng)求的時(shí)候
 9 //request請(qǐng)求,response響應(yīng)
10 app.on('request',(req,res)=>{
11     //獲取請(qǐng)求的方式
12     //req.method
13     // console.log(req.method);    
14 
15     //獲取請(qǐng)求的地址
16     //req.url
17     console.log(req.url);
18     //第一個(gè)參數(shù)要解析的url地址,第二個(gè)參數(shù)為true時(shí) 解析當(dāng)前請(qǐng)求地址已對(duì)象的形式返回 
19     // console.log(url.parse(req.url,true).query);
20 
21     // req.headers
22     // console.log(req.headers['accept']); 
23 
24     // 用解構(gòu)賦值的形式拿到當(dāng)前url里面的query,pathname
25     let {query,pathname}=url.parse(req.url,true);
26     console.log(query.name);
27     console.log(query.age);
28 
29 
30     res.writeHead(200, {
31         'content-type': 'text/html;charset=utf8'
32     });
33     
34    
35     if(pathname=='/index' || pathname=='/' ){
36         res.end('<h2>welcome to homepage</h2>');
37     }else if(pathname=='/list'){
38         res.end('welcome to listpage');
39     }else{
40         res.end('404');
41     }
42     
43 
44     // if(req.method== 'POST'){
45     //     res.end('post');
46     // }else if (req.method== 'GET'){
47     //     res.end('get');
48     // }
49     //響應(yīng)內(nèi)容
50     // res.end('<h2>hello user</h2>')
51 
52 });
53 
54 //監(jiān)聽(tīng)端口
55 app.listen(3000);
56 console.log('網(wǎng)站服務(wù)啟動(dòng)成功!')
57 
58 // 訪問(wèn)本地 localhost:3000

 

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
解決在Node中出現(xiàn) [Object: null prototype] 的問(wèn)題
使用Node.js搭建靜態(tài)資源服務(wù)器
node.js靜態(tài)資源訪問(wèn)
實(shí)戰(zhàn):Express 模擬 CSRF 攻擊
Node.js基礎(chǔ)入門(mén)第七天
關(guān)于服務(wù)器端渲染的 Web 應(yīng)用的 504 錯(cuò)誤問(wèn)題
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服