超出多部分体长限制16384

时间:2017-01-31 22:13:58

标签: jquery asp.net-core multipartform-data

我一直试图让它发挥作用,但无济于事。

我要做的是使用JQuery AJAX上传一组FormData图像和附件。

我一直收到错误:"超出部分体长限制16384"

我在SO上发现了另一个类似的问题: Multipart body length limit exceeded exception

如果有人可以帮助我或指出我的方向,那将非常感激。几乎午夜在我身边,我即将放弃:(。

我正在使用ASP.NET Core 1.1。

这是我的javascript:

let data = new FormData();
    data.enctype = "multipart/form-data";
    let file = $("#imgItem_image-upload-file")[0].files[0];

    data.append("image|" + file.name, file); //Works fine if alone.

    //Does not work, causes error on server side.
    for (var i = 0; i < objItem.Attachments[0].length; i++) {
        let attFile = objItem.Attachments[0][i].File;
        console.log(attFile);
        data.append("attachment|" + attFile.name, attFile);
    }

    data.append("Category", objItem.Category);
    data.append("NewCategory", objItem.NewCategory);
    data.append("Name", objItem.Name);
    data.append("IdentificationType", objItem.IdentificationType);
    data.append("SerialNumber", objItem.SerialNumber);
    data.append("IMEI", objItem.IMEI);
    data.append("EngineNumber", objItem.EngineNumber);
    data.append("MASNumber", objItem.MASNumber);
    data.append("NumberPlate", objItem.NumberPlate);
    data.append("VINNumber", objItem.VINNumber);
    data.append("Description", objItem.Description);
    $.ajax({
        url: "http://localhost:7001/api/AddPersonalItem",
        type: "POST",
        data: data,
        //dataType: "json",
        //headers: { 'Content-Type': false },
        //contentType: false,
        contentType: false, //'multipart/form-data'
        processData: false,
        // headers: { 
        //     'Accept': 'application/json',
        //     'Content-Type': 'application/json' 
        // },
        success: function (response) {

        },
        error: function(jqXHR, textStatus, errorThrown) {
            console.log(textStatus, errorThrown);
        }
    });

我还将此添加到我的Startup.js文件中:

    public void ConfigureServices(IServiceCollection services)
    {
        // Add framework services.
        services.AddMvc();

        //Multipart
        services.Configure<FormOptions>(x =>
        {
            x.MultipartBodyLengthLimit = 60000000;
        });
    }

这是我的API控制器代码:

        public ServiceCallResponse AddPersonalItem()
        {
            ItemObject io = new ItemObject();
            io.Attachments = new List<Attachment>();
            io.Image = new Image();

            //Get files.
            foreach (IFormFile file in Request.Form.Files)
            {
                //The file name also states what type of object this is.
                string type = file.Name.Split('|')[0];
                string name = file.Name.Split('|')[1];

                StreamReader reader = new StreamReader(file.OpenReadStream());
                byte[] bytes = Encoding.Unicode.GetBytes(reader.ReadToEnd());
                string base64 = Convert.ToBase64String(bytes);

                switch (type.ToLower().Trim())
                {
                    case "attachment":
                        Attachment a = new Attachment();
                        a.Name = name;
                        a.Base64 = base64;

                        io.Attachments.Add(a);
                        break;
                    case "image":
                        io.Image.Name = name;
                        io.Image.Base64 = base64;
                        break;
                }
            }
        }

即使增加了多部分体长,我仍然得到完全相同的错误。

错误发生在:

  

foreach(Request.Form.Files中的IFormFile文件)

如果我对此不够清楚,请询问,我会尝试精心制作! :)

3 个答案:

答案 0 :(得分:2)

在我的情况下,解决方案是增加MemoryBufferThreshold。

use Illuminate\Notifications\Notifiable;

use App\Notifications\MyNotificationClass;

class MyModel extends Model
{

    use Notifiable;

    ....

}

答案 1 :(得分:1)

您还需要增加值长度限制。默认值类似于4MB。

              services.Configure<FormOptions>(options =>
                {
                    options.ValueCountLimit = 10; //default 1024
                    options.ValueLengthLimit = int.MaxValue; //not recommended value
                    options.MultipartBodyLengthLimit = long.MaxValue; //not recommended value
                });

答案 2 :(得分:0)

我遇到了异常,我发现我的客户端的HTTP标头错误“content-type”。 使用 curl 使用错误的输入类型 curl 尝试将POST文件中的整个文件作为文本发送,这不是一个很好的举动: - )

curl 的示例: 失败

curl --request POST \
  --url https://stuff.net/api/storage \
  --header 'authorization: bearer MY_ACCESS_TOKEN' \
  --header 'cache-control: no-cache' \
  --header 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
  --form MyfileName=b72871d79c81 \
  --form file=@nature-sky-twilight.jpg \
  --form MyfileId=9401c94db46c

有效

curl --request POST \
  --url https://stuff.net/api/storage \
  --header 'authorization: bearer MY_ACCESS_TOKEN' \
  --header 'cache-control: no-cache' \
  --form MyfileName=b72871d79c81 \
  --form file=@nature-sky-twilight.jpg \
  --form MyfileId=9401c94db46c