Issue
I have a file that I want to download on click. When I click on the link the download is launched an at the end I am told that the file is not found. Below is the content of my tag.
<a href="/media/{{file.filePath}}" download>Download</a>
But if I add the base url like this :
<a href="https://www.example.com/media/{{file.filePath}}" download>Download</a>
On click the file is opened in the browser while I want to download it.
Thanks in advance
Solution
you can use this snippet of code I wrote
<a href="{{ 'https://www.example.com/media/' + file }}" download>Download</a>
Answered By - Mathias Ravelojaona
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.