美文网首页
Failed to readtherequestform.For

Failed to readtherequestform.For

作者: 吉凶以情迁 | 来源:发表于2023-05-05 16:24 被阅读0次

    表单超过限制解决办法

    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
    });
    

    相关文章

      网友评论

          本文标题:Failed to readtherequestform.For

          本文链接:https://www.haomeiwen.com/subject/dckqsdtx.html