how to download file in react js

前端 未结 12 1660
梦谈多话
梦谈多话 2020-12-01 05:49

I receive file url as response from api. when user clicks on download button, the file should be downloaded without opening file preview in a new tab. How to achieve this in

12条回答
  •  孤城傲影
    2020-12-01 06:27

    You can use FileSaver.js to achieve this goal:

    const saveFile = () => {
    fileSaver.saveAs(
      process.env.REACT_APP_CLIENT_URL + "/resources/cv.pdf",
      "MyCV.pdf"
    );
    

    };

    
    

提交回复
热议问题