我正在使用safari版本8.0.5。上传文件时,file.onload工作正常。
在连续过程中,如果我打开文件,进行一些更改并再次点击上传文件按钮,文件不会在Safari中读取,但可以使用chrome工作。
我看到的console.log错误是找不到文件。
希望我定义了这个问题。
EDIT-1
我觉得我和我的文字混淆了
readFile = new FileReader();
readFile.onload = function(){
// working fine on first hit. But not working if i do changes in my file using editor.
}
readFile.error = function(){
// this is called after i make changes in my file with notepad. The error says file not found.
}