如何在环回4框架中增加默认的最大请求正文大小



如何在环回4框架中增加默认的最大请求体大小?我知道express在环回4内部使用,我需要做的相当于为body解析器expressjs中间件设置限制参数。

有什么想法吗?

感谢

server.bind(RestBindings.REQUEST_BODY_PARSER_OPTIONS).to({
limit: '4MB',
});

server.bind(RestBindings.REQUEST_BODY_PARSER_OPTIONS).to({
json: {limit: '4MB'},
text: {limit: '1MB'},
});

选项列表可以在正文解析器模块中找到。

默认情况下,限制为1MB。正文长度超过限制的任何请求都将被拒绝,http状态代码为413(请求实体太大(。

我更新了index.ts,将rest请求主体解析器配置添加到应用程序选项变量:

将限制增加到6MB,如下所示:

import {ApiServerApplication} from './application';
import {ApplicationConfig} from '@loopback/core';
export {ApiServerApplication};
export async function main(options: ApplicationConfig = {}) {
options.rest = {requestBodyParser: {json: {limit: '6MB'}}};
const app = new ApiServerApplication(options);
await app.boot();
await app.start();
const url = app.restServer.url;
console.log(`Server is running at ${url}`);
return app;
}

相关内容

  • 没有找到相关文章

最新更新