22

我需要在类组件中实现此代码。这是为了在我的类组件中使用 react-toastify 的上传进度

function Example(){
  const toastId = React.useRef(null);
  function handleUpload(){
    axios.request({
      method: "post", 
      url: "/foobar", 
      data: myData, 
      onUploadProgress: p => {
        const progress = p.loaded / p.total;
        if(toastId.current === null){
            toastId = toast('Upload in Progress', {
            progress: progress
          });
        } else {
          toast.update(toastId.current, {
            progress: progress
          })
        }
      }
    }).then(data => {
      
      toast.done(toastId.current);
    })
  }
  return (
    <div>
      <button onClick={handleUpload}>Upload something</button>
    </div>
  )
}

我怎样才能做到这一点?

4

1 回答 1

61

useRef()在反应钩子和钩子中是用于功能组件的,但如果你想在基于类的组件中创建引用,

您可以从类构造函数中执行此操作,如下面的代码:

  constructor(props) {
    super(props);
    this.myRef = React.createRef();
  }

检查React.createRef()

于 2020-06-21T13:21:23.617 回答