上传后如何关闭filpond浏览区域

时间:2019-10-20 08:26:05

标签: jquery upload filepond

我已经用jquery初始化了Filepond,我需要关闭上传文件后显示的浏览面板,以在文件上传时关闭。

到目前为止,我以这种方式设置filepond服务器:

server: {
    process: {
        url: window.urls.process_files,
            method: 'POST',
                headers: {
                        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
                        mimes: accepted_file_types
                    },
                    onload: (response) => {
                        const res = JSON.parse(response);
            },
}

上传文件时(在onLoad方法中),我需要关闭预览区域到空白上传面板的上传区域:

enter image description here

收件人:

enter image description here

我知道使用allowRevert可以删除“撤消”按钮,但是我需要上传的实例返回默认值。

谢谢。

0 个答案:

没有答案