Net Core教程

C# 上传文件过大引起的报错

本文主要是介绍C# 上传文件过大引起的报错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

操作环境

Asp .Net Core 5.0

错误日志

Failed to read the request form. Request body too large.

解决方法

参照 https://www.cnblogs.com/zhang-wenbin/p/10412442.html

修改Startup.cs文件

public void ConfigureServices(IServiceCollection services)
{

	services.AddControllers();

	services.Configure<FormOptions>(x =>
	{
		x.ValueLengthLimit = int.MaxValue;
		x.MultipartBodyLengthLimit = int.MaxValue;
		x.MemoryBufferThreshold = int.MaxValue;
	});
	services.Configure<KestrelServerOptions>(options =>
	{
		options.Limits.MaxRequestBodySize = 1024 * 1024 * 1024;
	});
}
这篇关于C# 上传文件过大引起的报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!