Open GenweiWu opened 6 years ago
https://github.com/angular/angular-cli/issues/3759
试试这个
sudo apt remove ng-common
sudo npm uninstall -g @angular/cli
sudo rm /usr/local/bin/ng
sudo npm install -g @angular/cli
https://stackoverflow.com/a/30682695
var links = [ 'https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.exe', 'https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.dmg', 'https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar' ];
function downloadAll(urls) { var link = document.createElement('a');
link.setAttribute('download', null); link.style.display = 'none';
document.body.appendChild(link);
for (var i = 0; i < urls.length; i++) { link.setAttribute('href', urls[i]); link.click(); }
document.body.removeChild(link); }
```html
<button onclick="downloadAll(window.links)">Test me!</button>
1. chrome 开发者工具