“JavaScript Download File” Ответ

Как загрузить файл в Python

import urllib.request

print('Beginning file download with urllib2...')

url = 'http://i3.ytimg.com/vi/J---aiyznGQ/mqdefault.jpg'
urllib.request.urlretrieve(url, '/Users/scott/Downloads/cat.jpg')
Ali0gamer

Скачать файл JavaScript

function download(link) {
  var element = document.createElement('a');
  element.setAttribute('href', link);

  element.style.display = 'none';
  document.body.appendChild(element);

  element.click();

  document.body.removeChild(element);
}
Defeated Dotterel

JavaScript Download File

let data = JSON.stringify([{email: "test@domain.com", name: "test"}, {email: "anothertest@example.com", name: "anothertest"}]);

let type = "application/json", name = "testfile.json";
downloader(data, type, name)

function downloader(data, type, name) {
	let blob = new Blob([data], {type});
	let url = window.URL.createObjectURL(blob);
	downloadURI(url, name);
	window.URL.revokeObjectURL(url);
}

function downloadURI(uri, name) {
    let link = document.createElement("a");
    link.download = name;
    link.href = uri;
    link.click();
}
 Run code snippet
Frail Fox

JS скачать файл с WebServer

<iframe id="download_iframe" style="display:none;"></iframe>
<script>
	document.getElementById('download_iframe').src = "/example/example.txt";
</script>

Defiant Duck

JavaScript Download File

$('a#someID').attr({target: '_blank', 
                    href  : 'http://localhost/directory/file.pdf'});
JDog

Ответы похожие на “JavaScript Download File”

Вопросы похожие на “JavaScript Download File”

Больше похожих ответов на “JavaScript Download File” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования