在使用koa-body 作文件上傳的時候,發現使用DELETE請求時,request.body中的內容爲空對象{}node
//code... const Koa = require('koa'); const koaBody = require("koa-body"); app.use(koaBody({ multipart: true, formidable: { maxFileSize: 200 * 1024 * 1024 } })) //...code
查閱官方文檔找到緣由
jquery
strict {Boolean} DEPRECATED If enabled, don't parse GET, HEAD, DELETE requests, default truegit
strict 參數:若是啓用,則不解析GET,HEAD,DELETE請求,默認爲truegithub
//...code app.use(koaBody({ multipart: true, strict:false,//設爲false formidable: { maxFileSize: 200 * 1024 * 1024 } })) //...code
// 前端請求(jquery) $.ajax({ url:`${baseUrl}/xxx`, type:"DELETE", headers:{ "content-type":"application/json" }, data:{ name:"小明", age:18 } }).then(res=>{ console.log(res); }) // 後端處理函數部分 const fn_testDelete=async(ctx,next)=>{ const {name,age}=ctx.request.body; console.log(name,age);//小明 18 ctx.response.body={ code:200, errMsg:"OK" } }