“javaScript Read Text File из URL” Ответ

Как прочитать текст из локального файла в JavaScript

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

JS Получите содержимое файла из URL

// create a variable called content containing the content from https://URL/file
fetch("https://URL/file").then((r)=>{r.text().then((d)=>{let CONTENT = d})})
Filthy Fowl

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

Извлечь строку из текстового файла javascript

$(function () {
    $.get('/your_file.txt', function (data) {
       words = data.split('\s');
    });
});
Awful Ape

Ответы похожие на “javaScript Read Text File из URL”

Вопросы похожие на “javaScript Read Text File из URL”

Больше похожих ответов на “javaScript Read Text File из URL” по JavaScript

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

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