如何将url文本文件添加到字符串

时间:2019-02-06 07:05:22

标签: javascript

我正在尝试添加一个文本文件(不是本地文件,而是URL文本文件),并用1句话将其保存为字符串, 有人可以帮我吗?

谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用fetchXmlHTTPRequest发出HTTP Get请求,并将值作为字符串存储到变量中

  var someVar;
  fetch('<path to text file>')
  .then(function(response) {
    return response.text();
  })
  .then(function(sentence) {
    someVar = sentence;
  });

请参阅[https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch] 或[https://www.w3schools.com/xml/xml_http.asp]