在React JS中上传之前如何显示文件任何文件类型的预览

时间:2019-05-10 15:02:47

标签: node.js reactjs file-upload

我将在上传之前显示文件,我可以预览图像文件,但不能预览其他类型的文件,如何使用react js显示任何类型的文件

 const ShowFile = e =>{
          if(e.target.files[0]){

            var obj = new FileReader();
            obj.onload = function(data){
              // here i wante other type
              var image = document.getElementById("file");
              image.src = data.target.result;
              image.style.display = "block";
            }
            obj.readAsDataURL(e.target.files[0]);
          }

     }

0 个答案:

没有答案