最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Get an array of values using fetch api javascript - Stack Overflow

programmeradmin1浏览0评论

I am using fetch api to read a txt file via javascript. I want to load the contents of the txt file which are separated by new line in an array.

Text file:

A
B
C

I need it in the following format:

arr = ["A", "B", "C"]

Below is the code I tried

var arr = []
fetch('file.txt')
  .then(function(response) {
    return response.text();
  }).then(function(text) {
arr.push(text)
console.log(text)

    });
  console.log(arr)

Nothing gets added to my array, however the data from the text file gets printed on the console.

I am using fetch api to read a txt file via javascript. I want to load the contents of the txt file which are separated by new line in an array.

Text file:

A
B
C

I need it in the following format:

arr = ["A", "B", "C"]

Below is the code I tried

var arr = []
fetch('file.txt')
  .then(function(response) {
    return response.text();
  }).then(function(text) {
arr.push(text)
console.log(text)

    });
  console.log(arr)

Nothing gets added to my array, however the data from the text file gets printed on the console.

Share Improve this question edited Jul 26, 2018 at 21:55 Bahman Parsa Manesh 2,3683 gold badges18 silver badges36 bronze badges asked Jul 26, 2018 at 21:51 valar morghulisvalar morghulis 1411 gold badge2 silver badges12 bronze badges 5
  • How do you know that nothing is added? – PM 77-1 Commented Jul 26, 2018 at 21:55
  • The console.log(arr) prints an empty array – valar morghulis Commented Jul 26, 2018 at 21:55
  • have you done a console.log(arr)? – mmenschig Commented Jul 26, 2018 at 21:55
  • @mmenschig yes, on the last line of code – valar morghulis Commented Jul 26, 2018 at 21:56
  • Move log(arr) right after log(text) to see the result. – PM 77-1 Commented Jul 26, 2018 at 22:06
Add a ment  | 

1 Answer 1

Reset to default 6

You can convert the text response to an array by splitting on newline characters:

function fetchData() {
    return fetch('data.txt')
            .then(response =>
                response.text().then(text => text.split(/\r|\n/)));
}

fetchData().then(arr => console.log(arr));

发布评论

评论列表(0)

  1. 暂无评论