如何自定义fetch方法以适用于FilePond文件上传器?
P粉129275658
P粉129275658 2023-09-01 21:32:47
0
1
648
<p>我在使用FilePond的自定义<code>fetch</code>方法时遇到了一个问题,不知道该如何处理<code>load()</code>函数。文档要求将文件对象传递给<code>load()</code>方法,但我不知道如何获取它。我尝试传递<code>null</code>,但会抛出错误:这是代码:</p> <pre class="brush:php;toolbar:false;">server: { fetch: (url, load, error, progress, abort, headers) => { progress(true, 0, 1024); load(file); return { abort: () => { abort(); }, }; },</pre> <p>有什么想法吗?</p>
P粉129275658
P粉129275658

全部回复(1)
P粉340980243

这是我在我的FilePond中从服务器获取文件时的做法。

load: async (source, load, error, progress, abort, headers) => {
            let file = files.find(el => el.file == source)
            var myRequest = new Request(source);
            fetch(myRequest).then(function(response) {
              response.blob().then(function(myBlob) {
                load(myBlob);
              });
            });
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板