html - Download local files using href -


i made web app using java (jersey servlets on backend) , angularjs on frontend. want open in new tabs or download local files. tried using:

<a href="file:///{{course.path}}" target="_blank" ><span> {{course.filename}} </span></a>  

where course json like:

{type: "pdf", path: "c:/users/tom/desktop/courses/course2.pdf", areasubject: "it", created: 1434700150341, filename: "course2"} 

when click on it, opens blank page (about:blank) , nothing appears.when type on browser file:///c:/users/tom/desktop/courses/course2.pdf content appears. how can make works when click tag? use chrome.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -