Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

【中间件】POST请求解析

  • 安装

    npm i -S koa-bodyparser
    
  • 使用写法

    import bodyParser from "koa-bodyparser";
    
    app.use(bodyParser({
        enableTypes: ['json', 'form', 'text'],
        extendTypes: {
            text: ['text/xml', 'application/xml']
        },
        jsonLimit: '100mb',
        textLimit: '100mb',
        formLimit: '100mb'
    }));