基於原生的http模塊開發本地服務器html
//(1)使用原生的HTTP開發服務器 const http = require('http') //處理get請求 var server = http.createServer((req,res)=>{ res.writeHead(200,{'Content-Type':'text/plain;charset=utf-8'}) res.write('hello world') res.end() }) //監聽端口 server.listen(3000)
//(2)處理post //處理post事件 const http = require('http') const qs = require('querystring') var postHtml = ` <html> <head> <meta charset="utf-8"> <title>POST</title> </head> <body> <form method="post"> <label>用戶</label><input name="uname"/> <label>密碼</label><input name="upwd" type="password"/> <br> <input type="submit"/> </form> </body> </html> ` var server = http.createServer((req,res)=>{ var body = "" //處理post方式請求 req.on('data',(data)=>{ body += data }) req.on('end',()=>{ body = qs.parse(body) res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'}) if(body.uname&&body.upwd){ res.write(body.uname) res.write('<br>') res.write(body.upwd) }else{ res.write(postHtml) } res.end() }) }) //console.log(server) server.listen(3000)
基於express第三方模塊開發node
//第三方模塊構建特別方便 //文件名:main.js const express = require('express') const bodyParser = require('body-parser') var app = express() app.use(bodyParser.urlencoded({extended:false})) //處理get方式請求 app.get('/',(req,res)=>{ res.send('hello world') }) //處理post方式請求 app.post('/login',(req,res)=>{ var uname = req.body.uname var upwd = req.body.upwd res.send({code:1,msg:"success"}) }) app.listen(3000)
解釋:上面的本地服務器是基於express框架寫的,首先必須引入第三方模塊。
引入步驟:python
而後就能夠使用該模塊啦,首先解釋get方式請求ajax
get方式請求用許多方式好比:express
post方式請求npm
備註:一般路由接口是放在單獨的文件中而後在引入的,我這裏直接將接口寫在裏面啦,瀏覽器默認是get方式請求;所謂的接口其實就是路徑:上訴代碼的運行流程以下:當前目錄下 打開控制檯:輸入node main 而後在瀏覽器輸入: http:127.0.0.1:3000 就會打印出 "hello world"。上面還有一個接口"/login"這個接口只能以post方式請求,纔會響應數據,所 http:127.0.0.1:3000/login是沒有反應的
#使用HTTPServer構建服務器(python版本3.71) #直接輸入命令:py -m http.server 8080