我正在使用react-filepond实现一个应用程序,一旦用户选择/删除文件,我需要获取 uris(用于文件)以从端点(服务器)上传,然后使用这些 uris 上传到我们的存储。 (同时也向用户显示上传进度)
正在使用onupdatefiles道具发送 getURIs 请求,然后使用 onprocessfile/onprocessfilestart 使用检索到的 URI 上传这些文件,这是最好的方法吗?
还有我们在onprocessfileprogress(file,progress)中得到的 progess 参数有什么用?它可以用于将进度反馈回filepond组件吗?