我正在尝试重命名 uppy.js 中的文件。根据文档,有 2 个函数能够提供此功能。我定义了这两个函数,但是,它们对文件名没有影响,也没有引发错误。如何使用这些函数重命名文件?
onBeforeFileAdded: (currentFile, files) => {
const modifiedFile = {
...currentFile,
name: currentFile.name + '__' + Date.now()
}
return modifiedFile
}
onBeforeUpload: (files) => {
if (Object.keys(files).length < 2) {
// log to console
uppy.log(`Aborting upload because only ${Object.keys(files).length} files were selected`)
// show error message to the user
uppy.info(`You have to select at least 2 files`, 'error', 500)
return false
}
}