前言:在web项目的.net framework时文件上传时,自己常用一般处理程序接受上传文件,上传文件的大小限制是可以项目的webconfig里配置。 到core项目使用一般处理程序变成了中间件,但是使用中间件接受的时候,就遇到了上传大文件时,抛出的异常:
httpRequest.Form threw an exception of type Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException : Request body too large ,说是请求内容太大了,接收不了,就查了查各种文章:
先是在官网里看上传文件的文档:https://docs.microsoft.com/zh-cn/aspnet/core/mvc/models/file-uploads?view=aspnetcore-3.0 里面有对上传文件请求大小限制的描述,但是其解决方案无法使用,很奇怪!
将上面的代码复制到项目中:
先是报错,无法使用! 可能这种解决方案不适用,或者在.net core 3.0的web_razor项目中无法使用!
后来干脆放弃这种方案,还是从度娘里搜吧,看看其他道友有没有类似的错误,当然是换一个搜法:直接搜跟异常内容相关的,果然看到了类似的文章:
https://blog.csdn.net/farmwang/article/details/88826459
但是人家是加了UseKestrel方法,不过是放在了UseStartup方法的后面,跟官网的解决方案位置不一样,代码倒是一样的,这这这!!! 是官方错了吗??? 擦擦擦,不管了,试试吧,结果发现不报错了,上传大文件也OK了,我草! 群众的力量才是伟大的!
下面贴出使用.net core 3.0 web_razor项目,借助中间件处理大文件上传的代码,供其他道友参考:
1-Program.cs:
public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build().Run(); } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args).ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup().UseKestrel(options => { //控制中间件允许的上传文件大小为:不限制 options.Limits.MaxRequestBodySize = null; }); }).ConfigureLogging(logging => { //https://github.com/NLog/NLog/wiki/Getting-started-with-ASP.NET-Core-3 logging.ClearProviders(); logging.SetMinimumLevel(LogLevel.Debug); }).UseNLog(); }
2-Startup.cs配置服务模块-注册中间件:
//如果请求地址符合登录中间件,则将其发送到登录中间件处理 //管道中间件 app.MapWhen(context => context.Request.Path.ToString().EndsWith("/ajax/report.js"), appBranch => appBranch.UseMiddleware());
3-razor页面上传代码:
@*表单控件*@ <form method="post" enctype="multipart/form-data" action="#"> <div class="form-group"> 选择文件:<input type="file" name="file" id="uploadFiles" multiple /> div> <button type="submit" class="btn btn-primary" id="btnSubmit">提交button> form>
4-中间件接受文件:
HttpRequest httpRequest = httpContext.Request; HttpResponse httpResponse = httpContext.Response; IFormFileCollection fileColl = httpRequest.Form.Files;