form-data 上传文件失败
最后更新于:2022-04-02 07:08:06
## form-data 上传文件失败
因为默认 swoole 的 post body 只支持 2mb,因此需要配置 swoole 的 `package_max_length` 参数 [Swoole 文档](https://wiki.swoole.com/wiki/page/301.html)。
- 在 HTTP 服务器 StartCommand::class 代码中增加该配置:
```
$server->set([
// 配置你需要的长度
'package_max_length' => 20 * 1024 * 1024,
]);
```
';