如何在 React 中创建下载文件 link?

How do I create a download file link in React?

我有一个问题,我正在做我自己的一个项目,我已经在 React 中设置了一些按钮,但是当我点击我的下载按钮时,除了我的网站,我什么也得不到。我该如何解决这个问题?

这是我的按钮的代码:

<Button className="resume__Button2" to="" download="./files/Chris_Warren.pdf" component={Link}>My Resume</Button>

有什么想法吗?

当你使用 React Router 时,你必须使用这个:

<Link to="/files/Chris_Warren.pdf" target="_blank" download>Download</Link>

或按钮。它们都是可能的,但你必须注意“/files/Chris_Warren.pdf”在你的public文件夹.