简体   繁体   English

使用 jquery 从本地设备下载文件

[英]download file from local device with jquery

I am trying to download a file that is on the local device I have a code in anchor tag like我正在尝试下载本地设备上的文件我在锚标记中有一个代码,例如

<a href="/home/ubuntu/Documents/uploads/orderInvoice/invoice.pdf"
target="_self"
download>Download</a>

when I browse the path in browser then it opens up but in jquery, the server path localhost:3000 is appended at the beginning当我在浏览器中浏览路径时,它会打开,但在 jquery 中,服务器路径localhost:3000会附加在开头

I have tried the file path like file:///home/ubuntu/Documents/uploads/orderInvoice/invoice.pdf but it is also not working我试过像file:///home/ubuntu/Documents/uploads/orderInvoice/invoice.pdf这样的文件路径,但它也不起作用

Your file path cannot be found.找不到您的文件路径。 I assume your file path will be as below, what will be the file path of your project file?我假设您的文件路径如下,您的项目文件的文件路径是什么?

<a href="localhost:3000/uploads/orderInvoice/invoice.pdf"
target="_self"
download>Download</a>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM