http://localhost:3000/models/view/6ea6e605-fc3f-4fdd-8778-0066d569d667
this is my file url and i want to download file from using a tag but the file open's in browser
trying to download file from a tag
Assuming that you are going to download an image following is the way to do it.
<a download="filename.jpg" href="/path/to/image" title="ImageName">
<img alt="ImageName" src="/path/to/image">
</a>
And note that path/to/image is an important notion here.