gpt4 book ai didi

javascript - 即使 DropZone 中的 maxFilesize 设置为 500,也无法加载文件大小超过 20MB 的文件

转载 作者:行者123 更新时间:2023-12-03 01:44:41 29 4
gpt4 key购买 nike

for (int i = 0; i < Request.Files.Count; i++)
{
HttpPostedFileBase file = Request.Files[i];
//Save file content goes here
fName = file.FileName;
if (file != null && file.ContentLength > 0)
{
}}

上面是我的 C# 代码,用于获取文件并保存到自定义路径。

Dropzone.options.dropzoneForm = {
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
maxFilesize: 500,
acceptedFiles: 'image/jpeg,image/png,image/tiff,application/pdf,.pdf,.jpeg,.jpg,.tiff,.tif,.pdf',
init: function () {}}

上面是我的 dropzone 的 java 脚本代码。在这里,我将 maxFilesize 设置为 500MB,我尝试上传 22MB 大小的文件,但在 C# 中收到“超出最大请求长度”错误,并且 Request.Files.Count 显示计数为 0。请帮助我解决这个问题。提前致谢。

最佳答案

允许上传最大大小为2GB的文件。在 web.config 文件中更新此设置

<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="2147483" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
</system.web>

<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.webServer>

关于javascript - 即使 DropZone 中的 maxFilesize 设置为 500,也无法加载文件大小超过 20MB 的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50694037/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com