我编写了一个React组件,使用文件的achor标签下载pdf文件。我收到一个错误Failed- No file
。
import React from 'react'
const Links = ()=>
<div className='github-link'>
<a href="https://github.com/" rel='noopener noreferrer' alt="github link"
target='_blank'><strong>View my GitHub here!</strong></a>
<a href="../resume/resume.pdf" download><strong>Download my Resume!</strong></a>
</div>
export default Links
我的src目录中有我的履历表pdf文件,该目录称为简历。我要下载的文件称为resume.pdf
感谢您的帮助!
答案 0 :(得分:0)
简单的解决方法是将pdf文件放在您的public
文件夹中并设置href="resume.pdf"
。
您还可以在resume
中创建一个名为public
的文件夹,并将pdf文件放入resume
文件夹中。
<a href="/resume/resume.pdf" download><strong>Download my Resume!</strong></a>