1.后端是.NET core
services.Configure<FormOptions>(options =>
{
options.ValueLengthLimit = int.MaxValue;
options.MultipartBodyLengthLimit = int.MaxValue;
options.MemoryBufferThreshold = int.MaxValue;
});
framework 应该是修改web.config maxlength什么东西
2.如果前后端分离 前端在Nginx 修改nginx默认配置大小
.Net framework 4.5.2
我找找
@echo_lovely: 如果没有就是默认配置自己手动添加
<system.web> <httpRuntime targetFramework="4.5" maxQueryStringLength="1024000" maxRequestLength="1024000" maxUrlLength="1024000" />
@白将: 我写到3096 000 000,但是还是不行,
Failed to load resource : the server responded with a status of 413(Request Entity Too Large)
@echo_lovely:<system.web>
<customErrors mode="Off" />
<httpRuntime maxRequestLength="3096000000" executionTimeout="3600" targetFramework="4.5"/>
</system.web>
这样试试
@白将: 我们项目里有两个web.config,我改的是另一个,改错了文件,这样可行
@echo_lovely: 在浏览器开发人员工具中,网络——>找到上传文件的请求,点开会提示修改哪个配置文件的哪项配置的