如何下载文件类型 XLSX

huangapple go评论171阅读模式
英文:

How to download file Type XLSX

问题

我在assets中有一个文件
如何下载文件类型 XLSX
我希望这个文件可以在我的项目中下载

<button className='p-2 bg-green-600 my-3 text-white '>
    <href='../../../Assets/file/form_upload_lead.xlsx'>下载上传格式</a>
</button>

如何下载文件类型 XLSX

我希望这个文件可以下载。当我下载这个文件时,结果如下
如何下载文件类型 XLSX

英文:

I have file in assets
如何下载文件类型 XLSX
and i hope this file can download in my project

&lt;button className=&#39;p-2 bg-green-600 my-3 text-white &#39;&gt;
    &lt;href=&#39;../../../Assets/file/form_upload_lead.xlsx&#39;&gt;Download Format Upload&lt;/a&gt;
&lt;/button&gt;

如何下载文件类型 XLSX

i hope this file can download. when i download this file the result like this
如何下载文件类型 XLSX

答案1

得分: 2

如果文件是公开的,应将其存储在public文件夹或其子目录中。

  • 通常会将Assets文件夹放在public文件夹中。
  • 然后您可以在路径/Assets/file/form_upload_lead.xlsx中访问(下载)该文件。

之后直接点击链接将触发文件的下载:

<button className='p-2 bg-green-600 my-3 text-white '>
  <a href='/Assets/file/form_upload_lead.xlsx'>下载上传格式</a>
</button>
英文:

If the file is meant to be public it should be stored on the public folder or a subdirectory of it.

  • You will typically place the Assets folder on public folder
  • Then You can (access) download the file in the path /Assets/file/form_upload_lead.xlsx

After that clicking directly to the link will trigger the download of the file:

 &lt;button className=&#39;p-2 bg-green-600 my-3 text-white &#39;&gt;
   &lt;a href=&#39;/Assets/file/form_upload_lead.xlsx&#39;&gt;Download Format Upload&lt;/a&gt;
 &lt;/button&gt;

huangapple
  • 本文由 发表于 2023年6月6日 16:00:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/76412541.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定