Get image preview before uploading in React

前端 未结 9 1734
醉梦人生
醉梦人生 2020-12-04 17:51

Many examples of this on here but can\'t seem to find any for react. I have managed to convert the vanilla js to react but getting an error.

The answer looks simple

9条回答
  •  情歌与酒
    2020-12-04 18:31

    -- Constructor

    constructor(props) {
      super(props);
      this.state = {
         imgRef: ""
      };
    }
    

    -- Function

    filePreview(e) {
        const file = e.target.files[0];
        this.setState({
            imgRef: URL.createObjectURL(file)
        });
    }
    

    -- Html

    
    
    

提交回复
热议问题