简书链接:FailedtoreadtherequestformFormkeylengthlimit2048orvaluelengthlimit4
文章字数:47,阅读全文大约需要1分钟
表单超过限制解决办法

1
2
3
4
5
6
7
builder.Services.Configure<FormOptions>(options =>
{
options.ValueLengthLimit = 100 * 1024 * 1024; // 100 MB
options.KeyLengthLimit = 100 * 1024 * 1024; // 100 MB
options.MultipartHeadersCountLimit = 100*1024*1024; // 100 MB
options.MultipartBodyLengthLimit = 100 * 1024 * 1024; // 100 MB
});