Currently utilizing angularjs
. I am in need of incorporating a download feature.
<button class="btn btn-labeled btn-info" title="download">
<a href="link provided by s3" download="downloaded">Download</a>
</button>
I have a controller and service set up, however, I am feeling overwhelmed with how to proceed. What is the process for downloading a file from s3 upon button click? Is it necessary to invoke a rest service for this task?