image.png

    通过以下语句,将交换数据的最大容量提升到50mb

    1. let bodyParser = require('body-parser');
    2. app.use(bodyParser.json({limit: '50mb'}));
    3. app.use(bodyParser.urlencoded({limit: '50mb', extended: true}));