npm body-parser 中文api
阿新 • • 發佈:2019-02-04
body-parser
node.js body parsing 中介軟體
安裝
$ npm install body-parser
API
var bodyPaeser =require('body-parser')
$ npm install body-parser
var bodyPaeser =require('body-parser')
body-parser
物件建立中介軟體,當接收到客戶端請求時所有的中介軟體都會給req.body
新增屬性,請求體為空,則解析為空{}
(或者出現錯誤)。json
,允許請求提任意Unicode編碼支援 gzip
和 deflate
編碼。bytes
庫 轉換為位元組大小。JSON.parse
能接受的。type
選項用來決定中介軟體要解析媒體型別。選項可以是一個函式或者是字串。當為字串時,可以直接通過type-is
mime
型別(application/json、/ 、*/json)。當為函式時:預設為application/json。gzip
deflate
壓縮。gzip
deflate
壓縮。urlencoded
請求體,並返回,只支援UTF-8編號文字,支援gzip
deflate
壓縮。