我正在尝试将简单的上传文件上传到服务器,好的,他正确地做到了。 但是,当我发送大小为1MB或更大的文档时,它会返回错误,但文件仍会出现在服务器上。成功了 但他在屏幕上说“上传时出错”(红色) 我该如何解决? (对不起,英语不好)
我尝试放入“ onload :(响应)=> response.key” 但不会发生。
这是我的upload.js 它可以工作,但是如果文件具有1MB或更大的大小,则会显示错误和错误信息,因为该文档已在服务器上正确发送。
FilePond.setOptions({
server: {
url: 'https://server.example.com',
process: {
url: '/upload-file',
method: 'POST',
withCredentials: false,
headers: {},
timeout: 7000,
onload: null,
onerror: null,
ondata: fd => {
fd.append('first_id', '08711913000128');
fd.append('second_id', '222222223');
fd.append('third_id', 4);
return fd
}
},
revert: null,
restore: null,
load: null,
fetch: null
}
});
显示“上传期间出错” 但是应该是“上传完成” 因为它上传到服务器没有问题,就像它完整一样。