“JS читать текстовый файл” Ответ

Прочтите текстовый файл в JavaScript

fetch("file.txt")
	.then((response) => {
  		return response.text();
	})
	.then((text) => {
  		console.log(text);
	});
Embarrassed Earthworm

Прочтите файл JavaScript

// As with JSON, use the Fetch API & ES6
fetch('something.txt')
  .then(response => response.text())
  .then(data => {
  	// Do something with your data
  	console.log(data);
  });
Kaotik

JS читать текстовый файл

<!-- No need for fetch or ajax.
 Use the widely supported FileReader api. -->
<input type="file" name="inputfile" id="inputfile">
<pre id="output"></pre>
<script type="text/javascript">
	document.getElementById('inputfile')
		.addEventListener('change', function() {

			var fr = new FileReader();
			fr.onload = function() {
				document.getElementById('output')
					.textContent = fr.result;
			}

			fr.readAsText(this.files[0]);
		})
</script>
P. Tune

javaScript Read Text File из URL

const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
    document.getElementById("demo").innerHTML = this.responseText;
}
xhttp.open("GET", text_file_url);
xhttp.send();
Raj Prajapati

Ответы похожие на “JS читать текстовый файл”

Вопросы похожие на “JS читать текстовый файл”

Больше похожих ответов на “JS читать текстовый файл” по HTML

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

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