Решение
Это похоже на объект файла Dropzone.JS.Если это так, и вы используете jQuery, вы можете отредактировать объект файла для события change
или addedfile
следующим образом:
// Target your Dropzone Element Id -- listen for the 'addedfile' event
$('#dropzone').on('addedfile', function(event) {
console.log("files: ", this.files)
// 'this' holds the files array -- access the files by index
var file = this.files[0];
// You can get the latest file added to the array this way
var mostRecentFile = this.files[this.files.length - 1]
// Now you can modify the file object
file.name = "MeowMix.txt";
file.type = "text/plain" ;
})
Четкость
Пожалуйста, убедитесь, чтоукажите детали вашего приложения (используемые плагины, фреймворки, библиотеки и т. д.) в своем вопросе, чтобы мы могли лучше помочь ответить на них!
Ссылка
- Dropzone.JS - Добавлено событие File