我正在使用dropzone通过以下设置上传文件。
$("#my-awesome-dropzone").dropzone({ // The camelized version of the ID of the form element
previewTemplate: document
.querySelector('#tpl')
.innerHTML,
// The configuration we've talked about above
url: '{!! route('pam.submissions.store', $stage->id) !!}',
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
maxFilesize:200,//MB
autoProcessQueue: false,
timeout: 120000,
// The setting up of the dropzone
init: function() {
//init code
},
});
即使将“ maxFilesize”的值设置为200(表示200 MB),我也无法上传大于10MB的文件。尝试上传时,控制台出现错误,提示“ POST {SUBMISSION-URL} 413(有效负载过大)”。我想知道背后的原因是什么。我做错了什么吗?该如何解决?
答案 0 :(得分:0)
这也是我的问题,我通过增加 php.ini 中的帖子最大大小来解决