如何定义预加载在filepond中的初始图像?

时间:2019-02-28 14:53:35

标签: javascript jquery filepond

我正在对记录进行编辑的laravel视图,该记录具有与之相关的图像,并且我需要将其显示为预加载在输入文件中,以便在提交时发送相同的图像,或者如果要更改它。

 // Turn input element into a pond
FilePond.registerPlugin(
    FilePondPluginFileEncode,
    FilePondPluginImagePreview,
    FilePondPluginImageExifOrientation,
    FilePondPluginFileValidateSize
);
var imagen = '{{ trim($marca->imagen_asociada) }}'
const inputElement = document.querySelector('input[type="file"]');

FilePond.setOptions({
    server: {
        load: imagen.replace('/images/button/','')
    }
});
const pond = FilePond.create(inputElement,{
    files: [
        {
            source: '{{ public_path().'/resources'.trim($marca->imagen_asociada) }}',
            options: {
                type: 'local',

                // mock file information
                file: {
                    name: imagen.replace('/images/button/',''),
                }
            }
        }
    ]
});

现在它显示如下

enter image description here

但是我应该这样显示 enter image description here

2 个答案:

答案 0 :(得分:1)

我有同样的问题,可以通过以下方法解决:

/*FilePond.setOptions({
    server: {
        load: imagen.replace('/images/button/','')
    }
}); Remove this.*/
const pond = FilePond.create(inputElement,{
    files: [
        {
            source: '{{ public_path().'/resources'.trim($marca->imagen_asociada) }}',
            /*options: {
                type: 'local',

                // mock file information
                file: {
                    name: imagen.replace('/images/button/',''),
                }
            } - Remove this options {} dictionary */
        }
    ]
});

根据文档Under Setting Initial Files

答案 1 :(得分:0)

如果模拟文件数据FilePond将不会加载实际文件,并且图像预览插件将没有任何数据可显示该文件。

确保您的server.load端点返回文件对象。