我正在尝试使用angularjs从api上传2gb文件,使用来自ajax的发布请求,重量为20 MB或更少的文件成功上传,但是当我尝试上传更重的文件时,控制台,告诉我此消息“POST http://localhost:57722/api/Archivos 404(Not Found)”
我想知道,为什么会这样。
答案 0 :(得分:0)
Asp.net默认限制请求大小,你可以修改你的web.config,添加打击配置:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
<system.web>
<httpRuntime maxRequestLength="2147483648" executionTimeout="20000"/>
</system.web>