GET請求是先後端交互最經常使用的請求之一,經常用來進行查詢操做。 那麼Koa是如何接收並處理GET請求呢?html
建立一個服務前端
const Koa = require('koa')
const app = new Koa()
app.use(async ctx => {
ctx.body = 'Hello World'
})
app.listen(8000)
複製代碼
const http = require('http');
http.createServer(app.callback()).listen(...);
複製代碼
koa2每個請求都會被傳入到app.use()方法中,app.use會把請求信息放入到ctx中,咱們能夠從ctx中獲取請求的基本信息。node
app.use(async ctx => {
const url = ctx.url // 請求的url
const method = ctx.method // 請求的方法
const query = ctx.query // 請求參數
const querystring = ctx.querystring // url字符串格式的請求參數
ctx.body = {
url,
method,
query,
querystring,
}
})
複製代碼
如今訪問localhost:8000?username=zj能夠看到瀏覽器返回後端
{
"url": "/?username=zj",
"method": "GET",
"query": {
"username": "zj"
},
"querystring": "username=zj"
}
複製代碼
POST請求的數據實體,會根據數據量的大小進行分包傳送。 當node.js後臺收到post請求時,會以buffer的形式將數據緩存起來。Koa2中經過ctx.req.addListener('data', ...)這個方法監聽這個buffer。 咱們簡單的看一下 一樣先簡單起一個服務:瀏覽器
const Koa = require('koa')
const app = new Koa()
app.use(async ctx => {
const req = ctx.request
const url = req.url // 請求的url
const method = req.method // 請求的方法
ctx.req.addListener('data', (postDataChunk) => {
console.log('收到post數據 ---->' ,postDataChunk)
})
ctx.body = {
url,
method,
}
})
app.listen(8000)
複製代碼
// 可使用xmind模擬post請求或者終端模擬
$ curl -d 'test' http://localhost:8000
複製代碼
此時看到node後臺打印:緩存
收到post數據 ----> <Buffer 74 65 73 74>
複製代碼
既然拿到了請求數據,那麼解析數據就好辦了。若是是普通的字符串,能夠直接經過字符串拼接來獲取。咱們更新一下核心代碼:bash
app.use(async ctx => {
const req = ctx.request
const url = req.url // 請求的url
const method = req.method // 請求的方法
let post_data = ''
ctx.req.addListener('data', (postDataChunk) => {
console.log('收到post數據 ---->' ,postDataChunk)
post_data += postDataChunk
})
ctx.req.addListener('end', () => {
console.log('接收post數據完畢 ---->', post_data)
})
ctx.body = {
url,
method,
}
})
複製代碼
還有一種最新的寫法,推薦使用(這種方法須要引入koa-bodyparser包)session
app.use(async ctx => {
const formdata = ctx.request.body //全部的請求都保存在裏面
todosomething //作些你想作的事情。嘿嘿
return ctx.body = {
code: '200',
msg: formadata
}
})
複製代碼
咱們把收到的數據,直接經過ctx.body 返回給前端。
複製代碼
小強前端交流羣QQ羣:724179055app
定時分析技術和資料,歡迎你們進來一塊兒交流。koa
往期回顧地址: