I am uploading files using spring boot and angular JS , I am also adding the details of the files to a table where i want to have access to the file , so i put in the html page
<tr ng-repeat="r in reports" >
<td>{{r.id_file}}</td>
<td>{{r.nameOfUploader}}</td>
<td>{{r.dateOfUpload}}</td>
<td>{{r.typeOfFile}}</td>
<!-- <td>{{r.fileName}}</td> -->
<td><a ng-href="F:/FilesStore/{{r.id_file}}-{{r.nameOfUploader}}"/>{{r.fileName}}</a></td>
Any ideas?