Download External Zip File From Angular Triggered On A Button Action
I'm writing an angular app and I allow users to download zip files by clicking on a button that calls on a controller method via ng-click. Inside the angular method, I'm calling wi
Solution 1:
Please try it like this:
window.open(url, '_blank')
Post a Comment for "Download External Zip File From Angular Triggered On A Button Action"