可下载文件 - 盖茨比
Downloadable File - Gatsby
由于某种原因,尝试下载文件时失败。我尝试了几种不同的方法,但都失败了。比我在 Gatsby 中读到的有关 pdf/word 文件是 "forbidden" 的内容??!
默认的<a href="route-to-file" download></a>
好像不行,显示下载失败。感谢您的帮助!
见Importing Assets Directly Into Files and Using the Static Folder
import React from "react"
import downloadFile from '../downloads/file.pdf'
const IndexPage = () => (
<>
<a href={downloadFile} download>Download the directly imported file</a>{` `}
<a href={`download.pdf`} download>Download the file that is already in your static folder</a>
</>
)
export default IndexPage
由于某种原因,尝试下载文件时失败。我尝试了几种不同的方法,但都失败了。比我在 Gatsby 中读到的有关 pdf/word 文件是 "forbidden" 的内容??!
默认的<a href="route-to-file" download></a>
好像不行,显示下载失败。感谢您的帮助!
见Importing Assets Directly Into Files and Using the Static Folder
import React from "react"
import downloadFile from '../downloads/file.pdf'
const IndexPage = () => (
<>
<a href={downloadFile} download>Download the directly imported file</a>{` `}
<a href={`download.pdf`} download>Download the file that is already in your static folder</a>
</>
)
export default IndexPage